chezmoi/private_dot_config/nvim/lua/polish.lua

17 lines
547 B
Lua
Raw Normal View History

2025-07-15 21:28:59 +00:00
-- This will run last in the setup process.
-- This is just pure lua so anything that doesn't
-- fit in the normal config locations above can go here
local keymap = vim.keymap
keymap.set("n", "<c-t>", ":Neotree toggle<CR>")
keymap.set("n", "<c-f>", ":Neotree focus<CR>")
keymap.set('i', '<up>', '<nop>')
keymap.set('i', '<left>', '<nop>')
keymap.set('i', '<right>', '<nop>')
keymap.set('i', '<down>', '<nop>')
keymap.set('', '<up>', '<nop>')
keymap.set('', '<left>', '<nop>')
keymap.set('', '<right>', '<nop>')
keymap.set('', '<down>', '<nop>')