remove help from treesitter as it seems to have vanished

This commit is contained in:
Thomas Ruoff
2023-04-26 22:35:15 +02:00
parent c231f2fc2a
commit 91db9483b7

View File

@@ -241,7 +241,7 @@ vim.api.nvim_create_autocmd('TextYankPost', {
-- 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', 'tsx', 'typescript', 'help', 'vim' },
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vim' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,