diff options
| author | willsmanic <57890520+nesper8@users.noreply.github.com> | 2023-01-02 07:48:13 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-01 21:18:13 -0500 |
| commit | 7d55047b917731a01d39b343ba8f16b534aa6dc0 (patch) | |
| tree | 6fce4ec46fcac2da69691c85ecf04eee52a352af /nvim | |
| parent | b6fd5b0bb09e815ed3ad1e128e7e22331c774959 (diff) | |
| download | dots-7d55047b917731a01d39b343ba8f16b534aa6dc0.tar.gz | |
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 'nvim')
| -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 c8f18d5..ac291da 100644 --- a/nvim/init.lua +++ b/nvim/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' } }, |