17 lines
547 B
Lua
17 lines
547 B
Lua
|
|
-- 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>')
|