From 27c053d38232b5212658bbfcaaf488fef01d8c20 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 1 Oct 2022 19:42:52 +0200 Subject: [PATCH] nvim: don't install vimhelp parser --- .config/nvim/lua/my/filetypes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/my/filetypes.lua b/.config/nvim/lua/my/filetypes.lua index 1f0cd7a..5bd1d29 100644 --- a/.config/nvim/lua/my/filetypes.lua +++ b/.config/nvim/lua/my/filetypes.lua @@ -1,6 +1,6 @@ require 'nvim-treesitter.configs'.setup { ensure_installed = 'all', - ignore_install = { 'comment' }, + ignore_install = { 'comment', 'help' }, sync_install = true, highlight = { enable = true,