Last active
July 7, 2020 01:41
-
-
Save htsign/ebabda40082fbbb566a43de3038914db 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
set easymotion | |
set ideajoin | |
set surround | |
set commentary | |
set incsearch | |
nnoremap [c :action GotoNextError<CR> | |
nnoremap ]c :action GotoPreviousError<CR> |
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
set autoindent | |
set smartindent | |
set ignorecase | |
set smartcase | |
set incsearch | |
set hlsearch | |
set scrolloff=5 | |
nnoremap <C-[><C-[> :nohlsearch<CR> | |
" vrapper specialized options | |
set contentassistmode | |
eclipseaction ShowInfo org.eclipse.ui.edit.text.showInformation | |
nnoremap K :ShowInfo<CR> | |
eclipseaction SearchRef org.eclipse.jdt.ui.edit.text.java.search.references.in.project | |
nnoremap <Leader>sr :SearchRef<CR> | |
autocmd "Java Editor" eclipseuiaction QuickFix org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals | |
nnoremap <Leader>qf :QuickFix<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment