Skip to content
vcedraz- edited this page May 4, 2023 · 1 revision

Welcome to the ft_neovim wiki!

DEBUG DIRECTLY FROM NEOVIM

ft_neovim has the dap and dap-ui plugins installed and configured properly for the C language

1 - Install codelldb once:

  • run :MasonInstall codelldb

2 - Compile your code with the -g flag just like gdb

3 - Learn the tricks:

  • F5 set a breakpoint
  • F6 initialize debugger / go to next break
  • F7 next step
  • F8 step inside function