nvim: Initial config

This commit is contained in:
2026-07-04 14:24:19 -04:00
parent 5ca464c2ac
commit b714384b0e
7 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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" })
map("n", "<leader>e", "<cmd>Lexplore<CR>", { desc = "Toggle file explorer" })