local map = vim.api.nvim_set_keymap local opts = { noremap = true, silent = true } -- Move to previous/next map('n', '', ':BufferPrevious', opts) map('n', '', ':BufferNext', opts) -- close current buffer map('n', '', ':BufferClose', opts)