diff options
author | Maximiliano Greco <mmngreco@users.noreply.github.com> | 2022-12-07 03:11:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 21:11:15 -0500 |
commit | ad0fa7daf009f10e23964c25fdffc8245a75ed9d (patch) | |
tree | 569f98fd52b3ca5d7dfe05b6961883a7c67ca9ec /init.lua | |
parent | d5bbf7cef2ad43a9f279399ec508777141e568c4 (diff) |
enh(treesitter): add help into ensure_installed (#39)
closes https://github.com/nvim-lua/kickstart.nvim/issues/38
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |