From 26ee7a027ed4eeb108e12565a144725ccb48d157 Mon Sep 17 00:00:00 2001 From: willsmanic <57890520+nesper8@users.noreply.github.com> Date: Sun, 1 Jan 2023 18:35:54 +0530 Subject: [PATCH] added vim to tree-sitter's ensured installed list please refer to https://github.com/nvim-treesitter/nvim-treesitter/issues/3092 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index c8f18d59..ac291dad 100644 --- a/init.lua +++ b/init.lua @@ -221,7 +221,7 @@ vim.keymap.set('n', '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', 'help' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'vim' }, highlight = { enable = true }, indent = { enable = true, disable = { 'python' } },