install treesitter for neovim
This commit is contained in:
parent
fd51e1f396
commit
af506f6f0d
2 changed files with 12 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
||||||
neodev-nvim
|
neodev-nvim
|
||||||
luasnip
|
luasnip
|
||||||
cmp_luasnip
|
cmp_luasnip
|
||||||
|
nvim-treesitter.withAllGrammars
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -137,3 +137,14 @@ cmp.setup {
|
||||||
{ name = 'luasnip' },
|
{ name = 'luasnip' },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
--[ TREESITTER ]---
|
||||||
|
require('nvim-treesitter.configs').setup {
|
||||||
|
ensure_installed = {},
|
||||||
|
|
||||||
|
auto_install = false,
|
||||||
|
|
||||||
|
highlight = { enable = true },
|
||||||
|
|
||||||
|
indent = { enable = true },
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue