diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-24 13:57:22 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-24 13:57:22 +0200 |
commit | 5e7f62447cdb6c936bf328d9859e44d8d1cc00a4 (patch) | |
tree | 7748c27a58734637988b5b4c49dc68a02f46ad62 /fnl/settings | |
parent | eb47c52b2460b1dc695ef4f855ab5483e9a12028 (diff) |
Replace no highlight with c-h
Diffstat (limited to 'fnl/settings')
-rw-r--r-- | fnl/settings/keymaps.fnl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index d44113f..a7d709a 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -19,10 +19,10 @@ ;; Normal ;; ;; Better window navigation -(map :n :<C-h> :<C-w>h opts) -(map :n :<C-j> :<C-w>j opts) -(map :n :<C-k> :<C-w>k opts) -(map :n :<C-l> :<C-w>l opts) +(map :n :<m-h> :<C-w>h opts) +(map :n :<m-j> :<C-w>j opts) +(map :n :<m-k> :<C-w>k opts) +(map :n :<m-l> :<C-w>l opts) ;; Resize with arrows (map :n :<C-Up> ":resize -2<CR>" opts) @@ -55,3 +55,5 @@ (map :n :<m-s> :<cmd>split<CR> opts) (map :n :<C-s> :<cmd>split<CR> opts) (map :n :<m-v> :<cmd>vsplit<CR> opts) + +(map :n :<c-h> :<cmd>nohlsearch<CR> opts) |