mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
feat: add override config
This commit is contained in:
parent
d525cf77e6
commit
b3dc2415c6
2 changed files with 22 additions and 6 deletions
|
|
@ -10,10 +10,4 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "everforest",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
22
lua/plugins/override.lua
Normal file
22
lua/plugins/override.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue