Skip to content

Instantly share code, notes, and snippets.

@antonmry
Created January 7, 2025 18:00
Show Gist options
  • Save antonmry/01096fcccbb084d5af73da7c47bb6716 to your computer and use it in GitHub Desktop.
Save antonmry/01096fcccbb084d5af73da7c47bb6716 to your computer and use it in GitHub Desktop.
ideavimrc
set hlsearch
set scrolloff=3
set ignorecase smartcase
set showmode
set history=1000
set NERDTree
" antonmry
let mapleader = " "
let g:mapleader = " "
" Show line, column number, and relative position within a file in the status line
set ruler
" Show line numbers
set number
set relativenumber
" Show (partial) commands (or size of selection in Visual mode) in the status line
set showcmd
" -----------------------------------------------------------------------------
" https://towardsdatascience.com/the-essential-ideavim-remaps-291d4cd3971b
" https://www.reddit.com/r/IntelliJIDEA/comments/1cb5xp4/til_how_to_use_ideavim_commands_as_idea_actions/
" https://github.com/citizenmatt/dotfiles/blob/master/ideavimrc
" source ~/.ideavimrc
" Refactors
nnoremap <leader>= :action Refactorings.QuickListPopupAction<CR>
nnoremap <leader>o :action OptimizeImports<CR>
nnoremap <leader>g :action Generate<CR>
nnoremap <leader>f :action ReformatCode<CR>
" Navigating
nnoremap <leader>N :action GotoClass<cr>
nnoremap <leader>n :action GotoFile<cr>
" Actions
nnoremap <leader>a :action GotoAction<cr>
nnoremap <leader>r :action Run<CR>
nnoremap <leader>R :action ContextRun<CR>
command! <leader>t :action Macro.Send2Terminal
" Plugin
Plug 'tpope/vim-commentary'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment