summaryrefslogtreecommitdiff
path: root/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorFolke Lemaitre <folke.lemaitre@gmail.com>2023-01-08 15:07:07 +0100
committerFolke Lemaitre <folke.lemaitre@gmail.com>2023-01-08 15:07:07 +0100
commitc137431c14481ac784af7c70d287e42a4579f198 (patch)
treed6a7bf70ccf1ef7f43296d888897550b56168b30 /lua/plugins/treesitter.lua
parentabdd658733c15ca1960bfa8fd62f6ef176210051 (diff)
refactor!: use new `opts` property
Diffstat (limited to 'lua/plugins/treesitter.lua')
-rw-r--r--lua/plugins/treesitter.lua36
1 files changed, 19 insertions, 17 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua
index 6797338..38279ca 100644
--- a/lua/plugins/treesitter.lua
+++ b/lua/plugins/treesitter.lua
@@ -3,22 +3,24 @@ return {
-- treesitter
{
"nvim-treesitter/nvim-treesitter",
- ensure_installed = {
- "bash",
- "help",
- "html",
- "javascript",
- "json",
- "lua",
- "markdown",
- "markdown_inline",
- "python",
- "query",
- "regex",
- "tsx",
- "typescript",
- "vim",
- "yaml",
- },
+ -- opts = {
+ -- ensure_installed = {
+ -- "bash",
+ -- "help",
+ -- "html",
+ -- "javascript",
+ -- "json",
+ -- "lua",
+ -- "markdown",
+ -- "markdown_inline",
+ -- "python",
+ -- "query",
+ -- "regex",
+ -- "tsx",
+ -- "typescript",
+ -- "vim",
+ -- "yaml",
+ -- },
+ -- },
},
}