neovim: Use `-` to open current directory.

main
Joshua Potter 2024-03-21 14:38:56 -06:00
parent 7ccf651813
commit 017f36d6cf
1 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,8 @@ in
-- "Zoom" in on a window
vim.keymap.set("n", "<c-w>z", ":tabedit %<CR>")
-- Open working directory.
vim.keymap.set("n", "-", ":Explore<CR>")
'')
];
};