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:
parent
5b6685b165
commit
3edfac79b4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ require'compe'.setup {
|
||||||
nvim_lua = true;
|
nvim_lua = true;
|
||||||
omni = false;
|
omni = false;
|
||||||
spell = true;
|
spell = true;
|
||||||
tags = true;
|
tags = false;
|
||||||
treesitter = true;
|
treesitter = true;
|
||||||
snippets_nvim = false;
|
snippets_nvim = false;
|
||||||
vsnip = true;
|
vsnip = true;
|
||||||
|
|
Loading…
Reference in a new issue