Skip to content

Commit e4507d9

Browse files
committed
add keymap for ex
1 parent 84946d8 commit e4507d9

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ Neovim's configurations are located under the following paths, depending on your
5555
so that you have your own copy that you can modify, then install by cloning the
5656
fork to your machine using one of the commands below, depending on your OS.
5757

58-
> **NOTE**
59-
> Your fork's url will be something like this:
60-
> `https://github.com/<your_github_username>/kickstart.nvim.git`
61-
6258
You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file
6359
too - it's ignored in the kickstart repo to make maintenance easier, but it's
6460
[recommmended to track it in version control](https://lazy.folke.io/usage/lockfile).

init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win
190190
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
191191
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
192192

193+
vim.keymap.set('n', '<leader>e', ':Ex<cr>', { desc = 'open file explorer' })
193194
-- [[ Basic Autocommands ]]
194195
-- See `:help lua-guide-autocommands`
195196

0 commit comments

Comments
 (0)