diff options
Diffstat (limited to 'lua/talha/plugins/treesitter.lua')
| -rw-r--r-- | lua/talha/plugins/treesitter.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/talha/plugins/treesitter.lua b/lua/talha/plugins/treesitter.lua index 3f1efc7..53d3ca0 100644 --- a/lua/talha/plugins/treesitter.lua +++ b/lua/talha/plugins/treesitter.lua @@ -1,6 +1,8 @@ return { { - "nvim-treesitter/nvim-treesitter",build = ":TSUpdate", + "nvim-treesitter/nvim-treesitter", + lazy = false, + build = ":TSUpdate", config = function () local configs = require("nvim-treesitter.configs") @@ -14,7 +16,7 @@ return { enable = true, additional_vim_regex_highlighting = false, }, - indent = { enable = false }, + indent = { enable = true }, }) end } |
