summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorwillsmanic <57890520+nesper8@users.noreply.github.com>2023-01-02 07:48:13 +0530
committerGitHub <noreply@github.com>2023-01-01 21:18:13 -0500
commit4916072854d01d0503821b7f3061daeb381f0441 (patch)
tree7c962dabbd6e8d8202ae15d325c85ce8b237256c /init.lua
parentc4d7212de3d309a20435333f42a0473cee81e29a (diff)
added vim to tree-sitter's ensured installed list (#110)
please refer to https://github.com/nvim-treesitter/nvim-treesitter/issues/3092
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index c8f18d5..ac291da 100644
--- a/init.lua
+++ b/init.lua
@@ -221,7 +221,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', 'help' },
+ ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'vim' },
highlight = { enable = true },
indent = { enable = true, disable = { 'python' } },