feat(mini.files): added extra keymap to open mini.files in the cwd

This commit is contained in:
Folke Lemaitre committed 2023-06-22 16:29:45 +02:00
1 parent 9ea1f31e9d
commit 5299522780
1 file changed
+8
@@ -16,6 +16,14 @@ return {
function()
require("mini.files").open(vim.api.nvim_buf_get_name(0), true)
end,
desc = "Open mini.files (directory of current file)",
},
{
"<leader>fM",
function()
require("mini.files").open(vim.loop.cwd(), true)
end,
desc = "Open mini.files (cwd)",
},
},
}