diff options
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/treesitter.lua | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..6797338 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,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", +    }, +  }, +}  | 
