diff options
Diffstat (limited to 'lua/Nanderty/Plugins/treesitter.lua')
| -rw-r--r-- | lua/Nanderty/Plugins/treesitter.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/Nanderty/Plugins/treesitter.lua b/lua/Nanderty/Plugins/treesitter.lua new file mode 100644 index 0000000..7baec80 --- /dev/null +++ b/lua/Nanderty/Plugins/treesitter.lua @@ -0,0 +1,13 @@ +require'nvim-treesitter.configs'.setup { + ensure_installed = {"help", "javascript", "html", "css", "python", "cpp", "c", "lua", "php",}, + + sync_install = false, + + auto_install = true, + + + highlight = { + enable = true, + + }, +} |
