enabled treesitter modules.
This commit is contained in:
parent
6ac0abba12
commit
7ba6e4539e
|
@ -10,7 +10,13 @@ return require('packer').startup(function(use)
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
run = ':TSUpdate'
|
run = ':TSUpdate',
|
||||||
|
config=function() require('nvim-treesitter').setup{
|
||||||
|
ensure_installed='maintained',
|
||||||
|
highlight={enable=true},
|
||||||
|
indent={enable=true},
|
||||||
|
incremental_selection={enable=true},
|
||||||
|
}end,
|
||||||
}
|
}
|
||||||
|
|
||||||
use 'neovim/nvim-lspconfig'
|
use 'neovim/nvim-lspconfig'
|
||||||
|
|
Loading…
Reference in a new issue