---@type LazyKeysSpec[]
local keys = {
    -- 👇 in this section, choose your own keymappings!
    {
        "<leader>-",
        "<cmd>Yazi<cr>",
        desc = "Open yazi at the current file",
    },
    {
        -- Open in the current working directory
        "<leader>cw",
        "<cmd>Yazi cwd<cr>",
        desc = "Open the file manager in nvim's working directory",
    },
    {
        "<c-up>",
        "<cmd>Yazi toggle<cr>",
        desc = "Resume the last yazi session",
    },
}

return keys