nvim: after/plugin/completion: Disable tags completion

We were using tags completion for C projects primarily but now that we
have enabled clangd LSP, disable tags based completion.
This commit is contained in:
Sanchayan Maity 2021-09-10 14:04:44 +05:30
parent 5b6685b165
commit 3edfac79b4

View file

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