diff options
| author | dasvh <dasvh@protonmail.com> | 2025-04-09 16:39:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-09 10:39:17 -0400 |
| commit | 6829fb9ac13118f67ad63e3ccb366be54b5c9131 (patch) | |
| tree | 351a1e316049779e86945137a083b43ca1ef83b3 | |
| parent | cff2d01e52d12722a864c98e8e458d183fd7932f (diff) | |
| download | dots-6829fb9ac13118f67ad63e3ccb366be54b5c9131.tar.gz | |
fix: minor misspellings (#1450)
* fix: minor misspellings
* revert change for `-Bbuild`
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 0c8d08a..b2880ae 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -107,7 +107,7 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' }) --- NOTE: Some terminals have coliding keymaps or are not able to send distinct keycodes +-- NOTE: Some terminals have colliding keymaps or are not able to send distinct keycodes -- vim.keymap.set("n", "<C-S-h>", "<C-w>H", { desc = "Move window to the left" }) -- vim.keymap.set("n", "<C-S-l>", "<C-w>L", { desc = "Move window to the right" }) -- vim.keymap.set("n", "<C-S-j>", "<C-w>J", { desc = "Move window to the lower" }) |