Files
nvim-old/after/plugin/barbar.lua
T
2023-05-24 15:32:46 -07:00

10 lines
268 B
Lua

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