This commit is contained in:
Ale 2024-06-23 17:07:02 +02:00
parent 6c5f5a75d4
commit ac7a6d8926
5 changed files with 30 additions and 38 deletions

View file

@ -0,0 +1,18 @@
return {
'romgrk/barbar.nvim',
dependencies = {
'lewis6991/gitsigns.nvim',
'nvim-tree/nvim-web-devicons'
},
init = function () vim.g.barbar_auto_setup = false end,
opts = {
animation = true,
auto_hide = 0,
preset = 'slanted',
sidebar_filetypes = {
['neo-tree'] = true
}
}
}

View file

@ -1,28 +0,0 @@
return {
{
'akinsho/bufferline.nvim',
config = function ()
require('bufferline').setup {
options = {
separator_style = "thin",
indicator = {
style = "none"
},
diagnostics = "nvim_lsp",
always_show_bufferline = false,
offsets = {
{
filetype = "neo-tree",
text = "Explorer",
highlight = "directory",
separator = false
}
}
}
}
end,
dependencies = {
'nvim-tree/nvim-web-devicons',
},
},
}

View file

@ -0,0 +1,9 @@
return {
'lukas-reineke/indent-blankline.nvim',
main = "ibl",
opts = {
indent = {
char = ""
}
}
}