diff --git a/lua/plugins/configs/lazy_nvim.lua b/lua/plugins/configs/lazy_nvim.lua index 967b0cf..e7a91eb 100644 --- a/lua/plugins/configs/lazy_nvim.lua +++ b/lua/plugins/configs/lazy_nvim.lua @@ -1,7 +1,5 @@ return { - defaults = { - lazy = true, - }, + defaults = { lazy = true }, -- install = { -- try to load one of these colorschemes when starting an installation during startup diff --git a/lua/plugins/configs/treesitter.lua b/lua/plugins/configs/treesitter.lua index 00d10bf..c38a34d 100644 --- a/lua/plugins/configs/treesitter.lua +++ b/lua/plugins/configs/treesitter.lua @@ -14,9 +14,7 @@ local options = { use_languagetree = true, }, - indent = { - enable = true, - }, + indent = { enable = true }, } require("nvim-treesitter.configs").setup(options)