Last active
September 24, 2024 08:19
-
-
Save ibreathebsb/4ab997e11b5b3e0d5496310a5806b57e to your computer and use it in GitHub Desktop.
.ideavimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" .ideavimrc is a configuration file for IdeaVim plugin. It uses | |
" the same commands as the original .vimrc configuration. | |
" You can find a list of commands here: https://jb.gg/h38q75 | |
" Find more examples here: https://jb.gg/share-ideavimrc | |
""" Map leader to space --------------------- | |
let mapleader=" " | |
"" -- 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 | |
set clipboard=unnamed | |
" Do incremental searching. | |
set incsearch | |
set relativenumber | |
set number | |
set nowrap | |
set tabstop=2 | |
set softtabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set ignorecase | |
set smartcase | |
" Don't use Ex mode, use Q for formatting. | |
map Q gq | |
" --- Enable IdeaVim plugins https://jb.gg/ideavim-plugins | |
" Highlight copied text | |
Plug 'machakann/vim-highlightedyank' | |
" Commentary plugin | |
Plug 'tpope/vim-commentary' | |
"Disable easymotion default bindings | |
let g:EasyMotion_do_mapping = 0 | |
Plug 'easymotion/vim-easymotion' | |
Plug 'tpope/vim-surround' | |
"" -- 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 <leader>fs <Action>(GotoSymbol) | |
map <leader>fs <Action>(FileStructurePopup) | |
map <leader>ff <Action>(GotoFile) | |
map <leader>fe <Action>(SearchEverywhere) | |
map <leader>lf <Action>(ReformatCode) | |
map <leader>lr <Action>(RenameElement) | |
map <leader>la <Action>(ShowIntentionActions) | |
map <leader>lg <Action>(TextSearchAction) | |
map <leader>gr <Action>(FindUsages) | |
map <leader>1 <Action>(Switch To Tab #1) | |
map <leader>2 <Action>(Switch To Tab #2) | |
map <leader>3 <Action>(Switch To Tab #3) | |
map <leader>4 <Action>(Switch To Tab #4) | |
map <leader>5 <Action>(Switch To Tab #5) | |
map <leader>6 <Action>(Switch To Tab #6) | |
map <leader>7 <Action>(Switch To Tab #7) | |
map <leader>8 <Action>(Switch To Tab #8) | |
map <leader>9 <Action>(Switch To Tab #9) | |
map f <Plug>(easymotion-f) | |
map F <Plug>(easymotion-F) | |
map t <Plug>(easymotion-t) | |
map T <Plug>(easymotion-T) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment