From b210fe3dfa7e511f2842607517293c22ab796f3a Mon Sep 17 00:00:00 2001 From: Zynh0722 Date: Sat, 11 Mar 2023 12:56:08 -0800 Subject: [PATCH] add python to ensure_installed --- after/plugin/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/treesitter.lua b/after/plugin/treesitter.lua index 05ed8b5..212c328 100644 --- a/after/plugin/treesitter.lua +++ b/after/plugin/treesitter.lua @@ -1,6 +1,6 @@ require 'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the four listed parsers should always be installed) - ensure_installed = { "help", "javascript", "typescript", "c", "lua", "vim" }, + ensure_installed = { "help", "javascript", "typescript", "c", "lua", "vim", "python" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false,