4 " -- Suggested options --
5 " Show a few lines of context around the cursor. Note that this makes the
6 " text scroll if you mouse-click near the start or end of the window.
15 " Use system clipboard
16 set clipboard+=unnamed
18 " Don't use Ex mode, use Q for formatting.
22 " -- Map IDE actions to IdeaVim -- https://jb.gg/abva4t
23 " Map \r to the Reformat Code action
24 "map \r <Action>(ReformatCode)
26 " Map <leader>d to start debug
27 "map <leader>d <Action>(Debug)
29 " Map \b to toggle the breakpoint on the current line
30 "map \b <Action>(ToggleLineBreakpoint)
33 "map n <Action>(FindNext)
34 "map N <Action>(FindPrevious)
36 " Find more examples here:
37 " - https://jb.gg/share-ideavimrc
38 " - https://www.cyberwizard.io/posts/the-ultimate-ideavim-setup/