From 4e326a262a601a03ac6b995a2432a0f68d8d7ae6 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 7 Nov 2022 15:24:06 +0000 Subject: [PATCH] Install all TS parsers --- lua/config_plugins/config_treesitter.lua | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/lua/config_plugins/config_treesitter.lua b/lua/config_plugins/config_treesitter.lua index 1d92d851..554c3071 100644 --- a/lua/config_plugins/config_treesitter.lua +++ b/lua/config_plugins/config_treesitter.lua @@ -1,19 +1,9 @@ require'nvim-treesitter.configs'.setup { - ensure_installed = { - 'python', - 'markdown', - 'lua', - 'yaml', - 'bash', - 'html', - 'json', - 'toml', - }, - auto_install = true, - highlight = { - enable = true, - additional_vim_regex_highlighting = false, - disable = {'help'}, - }, + ensure_installed = "all", + highlight = { + enable = true, + additional_vim_regex_highlighting = false, + disable = {'help'}, + }, }