diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-25 00:27:41 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-25 00:27:41 +0200 |
commit | 9af69c1df30ccb99e2f34632c3809987b22c98b4 (patch) | |
tree | 9745519ad99f2a5d6d046d6313868f5eeb13ff3f /fnl/settings | |
parent | 5e7f62447cdb6c936bf328d9859e44d8d1cc00a4 (diff) |
Change movement and hl keymaps
Diffstat (limited to 'fnl/settings')
-rw-r--r-- | fnl/settings/keymaps.fnl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index a7d709a..fe8a843 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -19,10 +19,10 @@ ;; Normal ;; ;; Better window navigation -(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) +(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) ;; Resize with arrows (map :n :<C-Up> ":resize -2<CR>" opts) @@ -56,4 +56,4 @@ (map :n :<C-s> :<cmd>split<CR> opts) (map :n :<m-v> :<cmd>vsplit<CR> opts) -(map :n :<c-h> :<cmd>nohlsearch<CR> opts) +(map :n :<m-h> :<cmd>nohlsearch<CR> opts) |