Files
nvim.config/lua/config/keymaps.lua
2025-06-22 15:42:23 +05:00

6 lines
400 B
Lua

-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps hererocks
vim.api.nvim_set_keymap("t", "<Esc>", "<C-\\><C-n>", { noremap = true, silent = true })
vim.keymap.set("n", "<leader>e", ":Neotree focus<CR>", { silent = true, desc = "Focus NeoTree" })