From eeaa68dcc7335f6c36fa7c0abff5e7f58d7933b4 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 20 Jan 2025 23:28:57 -0600 Subject: [PATCH] chore: update ensure_installed --- lua/plugins/treesitter.lua | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index b2b4e00..e4d67c8 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -6,10 +6,38 @@ return { config.setup({ auto_install = true, + ensure_installed = { + "bash", + "css", + "html", + "javascript", + "json", + "lua", + "python", + "typescript", + "tsx", + "vue", + "yaml", + "c_sharp", + "rust", + "csv", + "dockerfile", + "editorconfig", + "json", + "jsdoc", + "jsonc", + "markdown", + "markdown_inline", + "nginx", + "proto", + "sql", + "toml", + "ssh_config", + "xml", + }, indent = { enabled = true }, highlight = { enabled = true, - additional_vim_regex_highlighting = true, }, }) end,