Reorganize repo into config/, scripts/, and docs/ directories

This commit is contained in:
duma799
2026-02-13 13:15:14 +04:00
parent 063b0b1bd0
commit c7c73546bc
33 changed files with 8 additions and 8 deletions
+20
View File
@@ -0,0 +1,20 @@
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,
dependencies = {'nvim-lualine/lualine.nvim', 'nvim-tree/nvim-web-devicons'}
}