This commit is contained in:
2023-07-07 10:40:16 +02:00
parent e49f872029
commit 0e2d581a42
4 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
vim.o.tabstop = 2
vim.o.softtabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true

View File

@@ -0,0 +1,10 @@
return {
{
'akinsho/bufferline.nvim',
config = function()
vim.opt.termguicolors = true
require("bufferline").setup{}
end
},
}