diff options
Diffstat (limited to 'lua/plugins/treesitter.lua')
| -rw-r--r-- | lua/plugins/treesitter.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 24e6c32..69b452a 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,13 +1,13 @@ return { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", - config = function () + config = function () local ts = require("nvim-treesitter.configs") ts.setup({ ensure_installed = { "c", "lua", "vim", "vimdoc", "html", "css", "javascript" }, sync_install = false, highlight = { enable = true }, - indent = { enable = true }, + indent = { enable = true }, }) end } |
