You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
foodotfiles/home/.config/nvim/lua/keybinds.lua

12 lines
285 B
Lua

local map = vim.keymap.set
-- Navigate between buffers
map('n', '<C-N>', vim.cmd.bn, {silent = true})
map('n', '<C-B>', vim.cmd.bp, {silent = true})
-- Run Neoformat
map('n', '<M-f>', vim.cmd.Neoformat, {})
-- Exit terminal insert mode with esc
map('t', '<Esc>', '<C-\\><C-n>', {})