feat: replace tabline

This commit is contained in:
Fey Naomi Schrewe 2024-09-09 17:56:13 +02:00
parent 54807df2f4
commit 41ab58e00f
2 changed files with 11 additions and 9 deletions

View File

@ -2,7 +2,7 @@
"Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" }, "Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" },
"FixCursorHold.nvim": { "branch": "master", "commit": "1900f89dc17c603eec29960f57c00bd9ae696495" }, "FixCursorHold.nvim": { "branch": "master", "commit": "1900f89dc17c603eec29960f57c00bd9ae696495" },
"LuaSnip": { "branch": "master", "commit": "03c8e67eb7293c404845b3982db895d59c0d1538" }, "LuaSnip": { "branch": "master", "commit": "03c8e67eb7293c404845b3982db895d59c0d1538" },
"barbar.nvim": { "branch": "master", "commit": "31b6951c53a59bccfa91bf3984ed1510a940c836" }, "bufferline.nvim": { "branch": "main", "commit": "2e3c8cc5a57ddd32f1edd2ffd2ccb10c09421f6c" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" }, "cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" },
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },

View File

@ -152,13 +152,15 @@ return {
end end
}, },
{ {
'romgrk/barbar.nvim', 'akinsho/bufferline.nvim',
dependencies = { version = "*",
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status dependencies = 'nvim-tree/nvim-web-devicons',
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons opts = {
}, options = {
init = function() vim.g.barbar_auto_setup = false end, mode = 'tabs',
opts = {} separator_style = "slant"
}
}
}, },
{ {
'stevearc/conform.nvim', 'stevearc/conform.nvim',
@ -237,7 +239,7 @@ return {
{ {
'CWood-sdf/spaceport.nvim', 'CWood-sdf/spaceport.nvim',
opts = { opts = {
replace_dirs = {{ 'C:\\Development', '#' }} replace_dirs = { { 'C:\\Development', '#' } }
}, },
lazy = false, -- load spaceport immediately lazy = false, -- load spaceport immediately
} }