install treesitter for neovim

This commit is contained in:
Pim Kunis 2023-10-16 18:53:25 +02:00
parent fd51e1f396
commit af506f6f0d
2 changed files with 12 additions and 0 deletions

View file

@ -32,6 +32,7 @@
neodev-nvim
luasnip
cmp_luasnip
nvim-treesitter.withAllGrammars
];
};

View file

@ -137,3 +137,14 @@ cmp.setup {
{ name = 'luasnip' },
},
}
--[ TREESITTER ]---
require('nvim-treesitter.configs').setup {
ensure_installed = {},
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
}