Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from nicu-da/patch-3
Browse files Browse the repository at this point in the history
Create ideavim
  • Loading branch information
ecyshor authored Oct 29, 2023
2 parents ebccb2f + c8c93c8 commit 3f5e1f8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ideavim
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
"" Source your .vimrc
source ~/.vimrc

"" -- Suggested options --
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
set scrolloff=5

" Do incremental searching.
set incsearch

" Don't use Ex mode, use Q for formatting.
map Q gq


"" -- Map IDE actions to IdeaVim -- https://jb.gg/abva4t
"" Map \r to the Reformat Code action
"map \r <Action>(ReformatCode)

"" Map <leader>d to start debug
"map <leader>d <Action>(Debug)

"" Map \b to toggle the breakpoint on the current line
"map \b <Action>(ToggleLineBreakpoint)


" Find more examples here: https://jb.gg/share-ideavimrc
set number
set relativenumber

sethandler n:vim i:ide

0 comments on commit 3f5e1f8

Please sign in to comment.