enh(treesitter): add help into ensure_installed (#39)

closes https://github.com/nvim-lua/kickstart.nvim/issues/38
This commit is contained in:
Maximiliano Greco 2022-12-07 03:11:15 +01:00 committed by GitHub
parent d5bbf7cef2
commit ad0fa7daf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,7 +216,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de
-- 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' },
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help' },
highlight = { enable = true },
indent = { enable = true },