feat: add override config

pull/98/head
fm39hz-workstation 2024-05-13 12:57:32 +07:00
parent a7d6bcbf96
commit 571a9a9afa
2 changed files with 22 additions and 6 deletions

View File

@ -10,10 +10,4 @@ return {
})
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "everforest",
},
},
}

View File

@ -0,0 +1,22 @@
local opt = vim.opt
opt.tabstop = 4
opt.smartindent = true
opt.shiftwidth = 4
opt.expandtab = true
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "everforest",
},
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
tabstop = 4,
smartindent = true,
shiftwidth = 4,
expandtab = true,
},
},
}