diff options
| author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-07 10:53:15 +0100 | 
|---|---|---|
| committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-07 10:53:15 +0100 | 
| commit | a41bda19f351a1e0b75eb9f229ec1b957ceada47 (patch) | |
| tree | 3dcef7d3e572dbe9ea61af6beefa1f6395ab3523 /lua/plugins/treesitter.lua | |
| parent | 840f8dee5bbfbd2f04c1a53e5c45798a0ef22ac5 (diff) | |
feat(treesitter): examples on how to setup treesitter
Diffstat (limited to 'lua/plugins/treesitter.lua')
| -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", +    }, +  }, +}  | 
