21 lines
641 B
Lua
21 lines
641 B
Lua
return {
|
|
'kdheepak/tabline.nvim',
|
|
config = function()
|
|
require'tabline'.setup {
|
|
enable = true,
|
|
options = {
|
|
section_separators = { '', ''},
|
|
component_separators = {'|', '|'},
|
|
max_bufferline_percent = 80,
|
|
show_tabs_always = true,
|
|
show_devicons = true,
|
|
show_bufnr = false,
|
|
show_filename_only = true,
|
|
modified_italic = true,
|
|
show_tabs_only = false,
|
|
}
|
|
}
|
|
end,
|
|
requires = {'hoob3rt/lualine.nvim', 'kyazdani42/nvim-web-devicons'}
|
|
}
|