diff options
| author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-08 15:07:07 +0100 | 
|---|---|---|
| committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-08 15:07:07 +0100 | 
| commit | c137431c14481ac784af7c70d287e42a4579f198 (patch) | |
| tree | d6a7bf70ccf1ef7f43296d888897550b56168b30 /lua/plugins/treesitter.lua | |
| parent | abdd658733c15ca1960bfa8fd62f6ef176210051 (diff) | |
refactor!: use new `opts` property
Diffstat (limited to 'lua/plugins/treesitter.lua')
| -rw-r--r-- | lua/plugins/treesitter.lua | 36 | 
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", +    --   }, +    -- },    },  }  | 
