diff --git a/roles/neovim/files/after/plugin/treesitter.lua b/roles/neovim/files/after/plugin/treesitter.lua index 52a1dd5..0a62e33 100644 --- a/roles/neovim/files/after/plugin/treesitter.lua +++ b/roles/neovim/files/after/plugin/treesitter.lua @@ -7,8 +7,27 @@ configs.setup { context_commenting = { enable = true, }, - -- TODO: specify which languages to install. - ensure_installed = "all", + ensure_installed = { + "bash", + "comment", + "css", + "dockerfile", + "go", + "html", + "javascript", + "json", + "lua", + "make", + "markdown", + "php", + "regex", + "rst", + "scss", + "typescript", + "vim", + "vue", + "yaml", + }, highlight = { enable = true, },