add bufferline

This commit is contained in:
Gered 2024-09-01 19:50:25 -04:00
parent 35c1093d4e
commit 2541f2b1d7
2 changed files with 22 additions and 0 deletions

View file

@ -31,6 +31,7 @@ require('lazy').setup({
require 'plugins/nvim-dap',
require 'plugins/dashboard-nvim',
require 'plugins/toggleterm',
require 'plugins/bufferline',
}, {
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the

View file

@ -0,0 +1,21 @@
return {
{
'akinsho/bufferline.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
opts = {
options = {
always_show_bufferline = true,
offsets = {
{
filetype = 'neo-tree',
text = 'Neo-tree',
highlight = 'Directory',
text_align = 'left',
},
},
},
},
},
}