Last active
March 28, 2023 11:52
-
-
Save Descalon/02ca5520428a1e7a049b03af9bf1b3f3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let mapleader = " " | |
set ideajoin | |
set NERDTree | |
"" plugins | |
Plug 'terryma/vim-multiple-cursors' | |
Plug 'tpope/vim-surround' | |
Plug 'machakann/vim-highlightedyank' | |
Plug 'tpope/vim-commentary' | |
Plug 'easymotion/vim-easymotion' | |
set clipboard+=unnamed | |
set clipboard+=ideaput | |
set scrolloff=5 | |
set incsearch | |
set number relativenumber | |
set scrolloff=5 | |
set incsearch | |
sethandler <c-j> a:vim | |
sethandler <c-k> a:vim | |
sethandler <c-t> a:vim | |
nnoremap \e :e ~\\.ideavimrc<CR> | |
map \r <Action>(IdeaVim.ReloadVimRc.reload) | |
map \t <Action>(ActivateTerminalToolWindow) | |
map <TAB> <Action>(NextTab) | |
map <s-TAB> <Action>(PreviousTab) | |
map <leader>f <Plug>(easymotion-s) | |
map <leader>e <Plug>(easymotion-f) | |
map <C-t> :NERDTree<CR> | |
map <leader><CR> <Action>(ShowIntentionActions) | |
map <F2> <Action>(RenameElement) | |
map <leader>b <Action>(ToggleLineBreakpoint) | |
map <leader>B <Action>(CompileDirty) | |
map <leader>r <Action>(Run) | |
map <leader>d <Action>(Debug) | |
map <leader>R <Action>(ChooseRunConfiguration) | |
map <leader>W <Action>(CloseEditor) | |
map <leader>w <Action>(CloseAllEditorsButActive) | |
map <leader>z <Action>(ToggleDistractionFreeMode) | |
map <leader>p <Action>(QuickJavaDoc) | |
map gj <Action>(Back) | |
map gk <Action>(Forward) | |
map gi <Action>(GotoImplementation) | |
map gn <Action>(GotoClass) | |
map gN <Action>(GotoFile) | |
map gu <Action>(FindUsages) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment