From da3c46dfecdb8ce6b8cdc68e825cb08060884cad Mon Sep 17 00:00:00 2001 From: krolyxon Date: Mon, 30 Jan 2023 11:36:14 +0530 Subject: [PATCH] reduce LOC --- lua/plugins/configs/lazy_nvim.lua | 4 +--- lua/plugins/configs/treesitter.lua | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) 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)