diff --git a/lua/plugins/everforest-nvim.lua b/lua/plugins/everforest-nvim.lua index 1cffeb6..c83d819 100644 --- a/lua/plugins/everforest-nvim.lua +++ b/lua/plugins/everforest-nvim.lua @@ -10,10 +10,4 @@ return { }) end, }, - { - "LazyVim/LazyVim", - opts = { - colorscheme = "everforest", - }, - }, } diff --git a/lua/plugins/override.lua b/lua/plugins/override.lua new file mode 100644 index 0000000..55d6385 --- /dev/null +++ b/lua/plugins/override.lua @@ -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, + }, + }, +}