From 32aff772b03a9bc72441b4277571e25acf77ca30 Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Fri, 23 Aug 2024 07:14:56 -0300 Subject: [PATCH] chore(treesitter): add more languages to ensure_installed Add more languages to the `ensure_installed` option in the `nvim-treesitter` setup call in the `lazy` plugin manager setup. --- init.lua | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 08a6fa1c..81e7296d 100644 --- a/init.lua +++ b/init.lua @@ -932,7 +932,27 @@ require('lazy').setup({ 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', opts = { - ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, + ensure_installed = { + 'bash', + 'bicep', + 'c', + 'diff', + 'dockerfile', + 'hcl', + 'helm', + 'html', + 'lua', + 'luadoc', + 'markdown', + 'markdown_inline', + 'python', + 'query', + 'rst', + 'terraform', + 'toml', + 'vim', + 'vimdoc', + }, -- Autoinstall languages that are not installed auto_install = true, highlight = {