1

I use neovim with coc.nvim for auto-completion of code, but I don't like this error detection [I don't mean its bad], I only want to disable this grey like with red >> on the left of line numbers (no problem with red line numbers)

enter image description here


How can I disable it,
  • like a line of code Which can be added to .vimrc or .init.vim which will do the job
  • that's what I want...
romainl
  • 186,200
  • 21
  • 280
  • 313
ANDuser
  • 71
  • 8

1 Answers1

1

put this in your init.vim file:

let b:coc_diagnostic_disable=1

if the error detection still present, edit your coc-settings.json file, it's located on the same location of your init.vim usually at ~/.config/nvim, add this line:

{
  "diagnostic.enable": false
}
youkwhd
  • 25
  • 1
  • 5
  • thats helpful, but, is there a way to only disable `>>`, without touching the red numbers as an error detection – ANDuser Mar 29 '23 at 03:09