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 | 9cbac1167c3845ec29e300e36675adeba8dae3ba (patch) | |
| tree | 600862499ed3ce7d2b34c4710443e32ad49f42f5 /nvim/init.lua | |
| parent | 6f61fd9d5a47c25231947b6631fe775cb20be0ce (diff) | |
| download | dots-9cbac1167c3845ec29e300e36675adeba8dae3ba.tar.gz | |
enh(treesitter): add help into ensure_installed (#39)
closes https://github.com/nvim-lua/kickstart.nvim/issues/38
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 6800ace..651a212 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -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 }, |