local map = vim.keymap.set -- Navigate between buffers map('n', '', vim.cmd.bn, {silent = true}) map('n', '', vim.cmd.bp, {silent = true}) -- Run Neoformat map('n', '', vim.cmd.Neoformat, {}) -- Exit terminal insert mode with esc map('t', '', '', {})