Home > Software engineering >  Debugging C in (Neo)vim
Debugging C in (Neo)vim

Time:11-17

I just switched from windows 10 to arch linux I want to use (Neo)Vim as my code editor I've sitted up autocomplition and Fuzzy finder But I have no idea how to debug in (Neo)Vim

Any helps!

CodePudding user response:

Until this moment I have just used Neovim/Vim to change some small things in a code on terminal, but I think that installing the Kite plugin can help a little bit while you are coding and also, I found this answer, that has some considerations and possibilities of debuggers for Vim.

CodePudding user response:

i think you are looking for a linting. you can setup it using builtin LSP. for reference, here is my config

  • Related