From 393c4e055f2666545d169f51cd389b2fc2b62a38 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Tue, 11 Mar 2025 16:50:26 +0100 Subject: [PATCH] vim:coc: Disable diagnostic signs The line number highlighting is enough and this way I still see the git signs (without messing with priorities). --- .config/vim/coc-settings.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/vim/coc-settings.json b/.config/vim/coc-settings.json index e719a05..01f1439 100644 --- a/.config/vim/coc-settings.json +++ b/.config/vim/coc-settings.json @@ -1,4 +1,10 @@ { + "diagnostic.enableHighlightLineNumber": true, + "diagnostic.errorSign": "", + "diagnostic.hintSign": "", + "diagnostic.infoSign": "", + "diagnostic.warningSign": "", + "diagnostic.messageDelay": 25, "inlayHint.enable": false }