From e8be76df9ebe3101e3b8b1af53d63c2579d718f5 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Tue, 29 Oct 2024 14:37:27 -0400 Subject: [PATCH] update treesitter config --- .config/nvim/lua/plugins/treesitter.lua | 37 +++++++++++++++++-------- 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua index 85b8384..bb588f5 100644 --- a/.config/nvim/lua/plugins/treesitter.lua +++ b/.config/nvim/lua/plugins/treesitter.lua @@ -10,22 +10,35 @@ treesitter.setup({ indent = { enable = true }, autotag = { enable = true }, ensure_installed = { - "json", - "javascript", - "typescript", - "yaml", - "html", + "bash", + "cmake", + "cpp", "css", + "diff", + "dockerfile", + "git_config", + "git_rebase", + "gitcommit", + "gitignore", + "graphql", + "html", + "javascript", + "json", + "lua", "markdown", "markdown_inline", - "graphql", - "bash", - "lua", - "vim", - "dockerfile", - "gitignore", - "gitcommit", + "nginx", + "perl", + "php", "python", + "regex", + "sql", + "ssh_config", + "todotxt", + "typescript", + "vim", + "xml", + "yaml", }, auto_install = true, })