diff options
Diffstat (limited to 'lua/plugins/nvim-treesitter.lua')
-rw-r--r-- | lua/plugins/nvim-treesitter.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/plugins/nvim-treesitter.lua b/lua/plugins/nvim-treesitter.lua new file mode 100644 index 0000000..5fc91d5 --- /dev/null +++ b/lua/plugins/nvim-treesitter.lua @@ -0,0 +1,14 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + build = ":TSUpdate", + config = function() + require("nvim-treesitter.configs").setup({ + ensure_installed = { "lua", "python", "rust" }, + sync_install = false, + highlight = { enable = true }, + indent = { enable = true }, + }) + end, + }, +} |