From 571a9a9afa480f651dc2da01f7f24889fdf385e2 Mon Sep 17 00:00:00 2001 From: fm39hz-workstation Date: Mon, 13 May 2024 12:57:32 +0700 Subject: [PATCH] feat: add override config --- lua/plugins/everforest-nvim.lua | 6 ------ lua/plugins/override.lua | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 lua/plugins/override.lua 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, + }, + }, +}