From: Xinqi Bao Date: Sun, 18 Jan 2026 14:44:08 +0000 (+0800) Subject: chore(coc): tune completion and diagnostic settings X-Git-Url: https://git.xinqibao.xyz/dotfiles.git/commitdiff_plain/809fae34e618497ddee3d8028e7addafc5846df2?ds=inline;hp=199d69bbbf567f058d0ace51d862aeaafabab009 chore(coc): tune completion and diagnostic settings - disable clangd snippet completion - disable inlay hints - enable semantic tokens - disable lua diagnostics --- diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json index cfb2699..df9927d 100644 --- a/.config/nvim/coc-settings.json +++ b/.config/nvim/coc-settings.json @@ -1,4 +1,8 @@ { "coc.preferences.colorSupport": true, + "clangd.disableSnippetCompletion": true, + "inlayHint.enable": false, + "semanticTokens.enable": true, + "Lua.diagnostics.enable": false, "suggest.noselect": true }