adding in tabs plugin

This commit is contained in:
talksik
2024-07-16 22:20:19 -07:00
parent e75f46e440
commit 5e177cc712
+13
View File
@@ -97,4 +97,17 @@ return {
end, {}) end, {})
end, end,
}, },
-- add in shortcuts for next and previous buffer
{
'romgrk/barbar.nvim',
config = function()
vim.keymap.set('n', '<leader>9', function()
vim.cmd 'BufferPrevious'
end, {})
vim.keymap.set('n', '<leader>0', function()
vim.cmd 'BufferNext'
end, {})
end,
},
} }