From 690e575c030cafa07f718ba5e0ac57d02823f3eb Mon Sep 17 00:00:00 2001 From: anth64 Date: Wed, 9 Apr 2025 23:23:51 +0200 Subject: [PATCH] make sure that colorscheme is not touched --- lua/config/lazy.lua | 2 -- lua/plugins/lsp.lua | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 lua/plugins/lsp.lua diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index f5ee74c..a2afd45 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -28,8 +28,6 @@ require("lazy").setup({ { import = "plugins" }, }, -- Configure any other settings here. See the documentation for more details. - -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "habamax" } }, -- automatically check for plugin updates checker = { enabled = true }, }) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua new file mode 100644 index 0000000..236249a --- /dev/null +++ b/lua/plugins/lsp.lua @@ -0,0 +1,3 @@ +return { + { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, +}