summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/keymaps.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-03-19 19:54:57 -0400
committertriethyl <triethylammonium@pm.me>2026-03-19 19:54:57 -0400
commitdf2a109f1a59e9e5cb6e136477286af5c0e2e376 (patch)
treeb0efa4d9571a50248717472261178caa7b7198ae /pkgs/custom-neovim/config/lua/keymaps.lua
parente86f0613a16a6d6ca64a6ec19e4abc0bf99626b7 (diff)
neovim: fixed mini files?
Diffstat (limited to 'pkgs/custom-neovim/config/lua/keymaps.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/keymaps.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/keymaps.lua b/pkgs/custom-neovim/config/lua/keymaps.lua
index 3f7d143..b2adae5 100644
--- a/pkgs/custom-neovim/config/lua/keymaps.lua
+++ b/pkgs/custom-neovim/config/lua/keymaps.lua
@@ -22,7 +22,7 @@ mapkey("n", "<leader>L", "Open cd picker", ":Pick cd<cr>", "mini.pick")
mapkey("n", "<leader>l", "Open tab cd picker", ":Pick cd scope='tab'<cr>", "mini.pick")
-- File manager
-mapkey("n", "<leader>e", "Open file manager", ":lua MiniFiles.open()<cr>", "mini.files")
+mapkey("n", "<leader>e", "Open file manager", ":lua MiniFiles.open(MiniFiles.get_latest_path())<cr>", "mini.files")
mapkey("n", "<leader>E", "Open file manager at current file", ":lua MiniFiles.open(vim.api.nvim_buf_get_name(0))<cr>", "mini.files")
-- Git