feat(ui): add bufferline plugin config

This commit is contained in:
Paul B. Kim 2026-03-06 11:08:25 +09:00
parent da30b14419
commit ef32c150ff
No known key found for this signature in database
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
return {
'akinsho/bufferline.nvim',
event = 'VeryLazy',
dependencies = { 'nvim-tree/nvim-web-devicons' },
keys = {
{ '<S-h>', '<cmd>BufferLineCyclePrev<CR>', desc = 'Previous buffer' },
{ '<S-l>', '<cmd>BufferLineCycleNext<CR>', desc = 'Next buffer' },
{ '<leader>bp', '<cmd>BufferLinePick<CR>', desc = '[B]uffer [P]ick' },
},
opts = {
options = {
mode = 'buffers',
always_show_bufferline = true,
show_buffer_close_icons = false,
show_close_icon = false,
},
},
}