Dot_Files/.config/nvim/lua/plugins/configs/bufferline.lua

19 lines
432 B
Lua
Raw Normal View History

2022-05-11 21:00:57 -05:00
local bufferline = require('bufferline')
2022-01-10 09:55:15 -06:00
bufferline.setup({
2022-05-11 21:00:57 -05:00
options = {
numbers = function(opts)
return string.format('%s', opts.id)
end,
diagnostics = 'nvim_lsp',
offsets = {
{
filetype = 'NvimTree',
text = 'File Explorer',
highlight = 'Directory',
text_align = 'left',
},
},
},
2022-01-10 09:55:15 -06:00
})