20 lines
415 B
Lua
20 lines
415 B
Lua
return {
|
|
'akinsho/bufferline.nvim',
|
|
version = "*",
|
|
dependencies = 'nvim-tree/nvim-web-devicons',
|
|
config = function()
|
|
vim.opt.termguicolors = true
|
|
require('bufferline').setup({
|
|
options = {
|
|
diagnostics = "nvim_lsp",
|
|
hover = {
|
|
enabled = true,
|
|
delay = 200,
|
|
reveal = {'close'}
|
|
}
|
|
}
|
|
})
|
|
end,
|
|
}
|
|
|