diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/keybindings.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/config/keybindings.lua b/lua/config/keybindings.lua new file mode 100644 index 0000000..7ed1daf --- /dev/null +++ b/lua/config/keybindings.lua @@ -0,0 +1,6 @@ +-- setup leader and local leader +vim.g.mapleader = " " +vim.g.maplocalleader = ";" + +-- source current file +vim.keymap.set("n", "<Leader> ", ":update<CR> :source<CR>") |
