From c1bec17f77ab5ad2522702849164e04884e1179f Mon Sep 17 00:00:00 2001 From: Jean-Pierre Appel Date: Sat, 26 Aug 2023 21:18:50 -0400 Subject: moved to lazy.nvim, configured lsp --- nvim/lua/plugins/treesitter.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nvim/lua/plugins/treesitter.lua (limited to 'nvim/lua/plugins/treesitter.lua') diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua new file mode 100644 index 0000000..49ea257 --- /dev/null +++ b/nvim/lua/plugins/treesitter.lua @@ -0,0 +1,12 @@ +return { + 'nvim-treesitter/nvim-treesitter', + build = ':TSUpdate', + opts = { + ensure_installed = { "help", "lua", "python", "java", "javascript", "typescript", "c" }, + auto_install = true, + highlight = { + enable = true, + additional_vim_regex_highlighting = false + } + } +} -- cgit v1.2.3