nvim: QoL plugins

This commit is contained in:
2026-07-06 19:13:01 -04:00
parent 3732ccd4d8
commit 2f08adbfb7
11 changed files with 130 additions and 58 deletions

View File

@@ -0,0 +1,8 @@
local map = vim.keymap.set
map("n", "<C-h>", "<C-w>h", { desc = "Move focus left" })
map("n", "<C-j>", "<C-w>j", { desc = "Move focus down" })
map("n", "<C-k>", "<C-w>k", { desc = "Move focus up" })
map("n", "<C-l>", "<C-w>l", { desc = "Move focus right" })
map("n", "<Esc>", "<cmd>nohlsearch<CR>", { desc = "Clear search highlight" })