nvim: lua: completion: Enable treesitter completion with nvim-compe

compe recently added completion support with treesitter. Enable it.
This commit is contained in:
Sanchayan Maity 2021-02-05 11:52:10 +05:30
parent 0981238a3c
commit 51b848d1f6

View file

@ -17,6 +17,7 @@ require'compe'.setup {
nvim_lua = true;
spell = true;
tags = true;
treesitter = true;
snippets_nvim = false;
vsnip = false;
};