diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 6d0fdad..c755ea7 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,10 +1,12 @@ return { - 'nvim-treesitter/nvim-treesitter', - config = function() - local configs = require("nvim-treesitter.configs") - configs.setup({ - highlight = { enable = true }, - indent = { enable = true }, - }) - end, + { + 'nvim-treesitter/nvim-treesitter', + config = function() + local configs = require("nvim-treesitter.configs") + configs.setup({ + highlight = { enable = true }, + indent = { enable = true }, + }) + end, + }, }