diff --git a/lazyvim/lua/plugins/nvim-treesitter.lua b/lazyvim/lua/plugins/nvim-treesitter.lua new file mode 100644 index 0000000..cd51067 --- /dev/null +++ b/lazyvim/lua/plugins/nvim-treesitter.lua @@ -0,0 +1,15 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + build = ":TSUpdate", + opts = { + ensure_installed = { "lua", "python", "javascript", "java", "sql"}, + highlight = { + enable = true, + additional_vim_regex_highlighting = false, + }, + indent = { enable = true }, + }, + }, +} +