diff options
-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) |