summaryrefslogtreecommitdiff
path: root/lua/config/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/plugins/treesitter.lua')
-rw-r--r--lua/config/plugins/treesitter.lua28
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/config/plugins/treesitter.lua b/lua/config/plugins/treesitter.lua
index 8e3df6a..931a474 100644
--- a/lua/config/plugins/treesitter.lua
+++ b/lua/config/plugins/treesitter.lua
@@ -1,16 +1,16 @@
return {
- {
- "nvim-treesitter",
- event = "DeferredUIEnter",
- load = function(name)
- vim.cmd.packadd(name)
- vim.cmd.packadd("nvim-treesitter-textobjects")
- end,
- after = function(_)
- require("nvim-treesitter.configs").setup({
- highlight = { enable = true },
- indent = { enable = true },
- })
- end,
- },
+ {
+ "nvim-treesitter",
+ event = "DeferredUIEnter",
+ load = function(name)
+ vim.cmd.packadd(name)
+ vim.cmd.packadd("nvim-treesitter-textobjects")
+ end,
+ after = function(_)
+ require("nvim-treesitter.configs").setup({
+ highlight = { enable = true },
+ indent = { enable = true },
+ })
+ end,
+ },
}