aboutsummaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-01-29 19:08:56 -0500
committerJP Appel <jeanpierre.appel01@gmail.com>2024-01-29 19:08:56 -0500
commitf826fd209c2e4734d463c1fb1065d2a660c35c8b (patch)
tree931388ea7e35001f6d2138f728e4c3ef263bea13 /nvim
parent06c5c9652709e8ab8f0ff7068a789c19a0324d59 (diff)
change: now use :Lexplore for netrw bind
Diffstat (limited to 'nvim')
-rw-r--r--nvim/lua/keymap.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/keymap.lua b/nvim/lua/keymap.lua
index fbd4898..bc1740e 100644
--- a/nvim/lua/keymap.lua
+++ b/nvim/lua/keymap.lua
@@ -31,7 +31,7 @@ M.nnoremap("<Leader>l", function()
end
end)
M.nnoremap("<leader>ef", function()
- vim.cmd('Vexplore')
+ vim.cmd('Lexplore')
end)
return M