From 71fcb7dd81c9a3c9edf57fa1ba7aa03f0bdebe51 Mon Sep 17 00:00:00 2001 From: whitney Date: Wed, 20 Aug 2025 15:21:03 -0700 Subject: [PATCH] Add nvim-treesitter custom languages' ' --- lazyvim/lua/plugins/nvim-treesitter.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lazyvim/lua/plugins/nvim-treesitter.lua 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 }, + }, + }, +} +