diff options
author | sefidel <contact@sefidel.net> | 2022-02-18 20:38:57 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-18 20:38:57 +0900 |
commit | 4a00e5495e01f4a69b39a053ea00e16e13a96d70 (patch) | |
tree | c719153c6a0b26ec0f473c96333f957097d43942 /fnl | |
parent | 2933e1a507071036b19c745b3162908458798558 (diff) | |
download | nvimrc-4a00e5495e01f4a69b39a053ea00e16e13a96d70.tar.gz nvimrc-4a00e5495e01f4a69b39a053ea00e16e13a96d70.zip |
feat(keybinds)!: fix conflicting keymaps
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/keymaps.fnl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/nvrc/keymaps.fnl b/fnl/nvrc/keymaps.fnl index c3bf6c0..7871cd3 100644 --- a/fnl/nvrc/keymaps.fnl +++ b/fnl/nvrc/keymaps.fnl @@ -13,11 +13,11 @@ ":lua require('Comment.api').toggle_linewise_op(vim.fn.visualmode()) <cr>") (map! [n :silent] :<leader>ff ":FzfLua files <cr>") -(map! [n :silent] :<leader>fc ":FzfLua grep <cr>") -(map! [n :silent] :<leader>fs ":FzfLua live_grep <cr>") +(map! [n :silent] :<leader>fd ":FzfLua grep <cr>") +(map! [n :silent] :<leader>fl ":FzfLua live_grep <cr>") (map! [n :silent] :<leader>fb ":FzfLua buffers <cr>") (map! [n :silent] :<leader>fg ":FzfLua git_commits <cr>") -(map! [n :silent] :<leader>fs ":FzfLua git_status <cr>") +(map! [n :silent] :<leader>fh ":FzfLua git_status <cr>") (map! [n] :f :<plug>Lightspeed_f) (map! [n] :F :<plug>Lightspeed_F) |