diff options
author | sefidel <contact@sefidel.net> | 2022-03-19 00:46:12 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-03-19 00:47:40 +0900 |
commit | 0135d35fc6fc513dfad9fc0d1560fc48299d1b4a (patch) | |
tree | bd86d7d97108eaf8bef9e31636bd6b4c5964f884 /fnl/nvrc | |
parent | 463a27d39b98cc5b664b6abab8e4fd4fbff7426a (diff) | |
download | nvimrc-0135d35fc6fc513dfad9fc0d1560fc48299d1b4a.tar.gz nvimrc-0135d35fc6fc513dfad9fc0d1560fc48299d1b4a.zip |
fix(keybinds)!: fix conflicting keybinds
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/keymaps.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/nvrc/keymaps.fnl b/fnl/nvrc/keymaps.fnl index 2d0e7c2..f375574 100644 --- a/fnl/nvrc/keymaps.fnl +++ b/fnl/nvrc/keymaps.fnl @@ -45,7 +45,7 @@ (map! [n :silent] :<leader>gm ":GMove<space>") (map! [n :silent] :<leader>go ":Git checkout<space>") (map! [n :silent] :<leader>gp ":Git! push<cr>") -(map! [n :silent] :<leader>gl ":Git! pull<cr>") +(map! [n :silent] :<leader>go ":Git! pull<cr>") (map! [n] :gf ":diffget //2<cr>") (map! [n] :gj ":diffget //3<cr>") |