From e4507d938eebae922acc43f6510073a7d28b34dd Mon Sep 17 00:00:00 2001 From: Andrea Canton Date: Sun, 15 Dec 2024 12:33:40 +0100 Subject: [PATCH] add keymap for ex --- README.md | 4 ---- init.lua | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 39ddf4d3..7bc43ff4 100644 --- a/README.md +++ b/README.md @@ -55,10 +55,6 @@ Neovim's configurations are located under the following paths, depending on your so that you have your own copy that you can modify, then install by cloning the fork to your machine using one of the commands below, depending on your OS. -> **NOTE** -> Your fork's url will be something like this: -> `https://github.com//kickstart.nvim.git` - You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file too - it's ignored in the kickstart repo to make maintenance easier, but it's [recommmended to track it in version control](https://lazy.folke.io/usage/lockfile). diff --git a/init.lua b/init.lua index 99b37269..4f760803 100644 --- a/init.lua +++ b/init.lua @@ -190,6 +190,7 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the right win vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +vim.keymap.set('n', 'e', ':Ex', { desc = 'open file explorer' }) -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`