From a37e5b3f0bb621cf2bf0d107475e5428794a839d Mon Sep 17 00:00:00 2001 From: Darius Auding <Darius.auding@gmx.de> Date: Sun, 23 Apr 2023 11:17:29 +0200 Subject: [PATCH] remove help parser --- lua/codecraft/plugin/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/codecraft/plugin/treesitter.lua b/lua/codecraft/plugin/treesitter.lua index 1ef6a10..1895e21 100644 --- a/lua/codecraft/plugin/treesitter.lua +++ b/lua/codecraft/plugin/treesitter.lua @@ -2,7 +2,7 @@ -- See `:help nvim-treesitter` require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'vim', 'html' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'vim', 'html' }, highlight = { enable = true }, indent = { enable = true, disable = { 'python' } }, -- GitLab