mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
230 lines
5.8 KiB
Plaintext
230 lines
5.8 KiB
Plaintext
"" Source your .vimrc
|
|
source $HOME/.dotfiles/config/vim/vimrc
|
|
|
|
" https://github.com/ville6000/dotfiles/blob/main/vimrc
|
|
" To get a list of Actions run `:actionlist `
|
|
let mapleader = "\<SPACE>"
|
|
|
|
set clipboard+=unnamed
|
|
set cursorline " Highlight current line
|
|
set nocompatible " disable compatibility mode with vi
|
|
filetype off " disable filetype detection (but re-enable later, see below)
|
|
set undolevels=1000 " Number of undo levels
|
|
set backspace=indent,eol,start " Backspace behaviour
|
|
|
|
" 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
|
|
|
|
call plug#begin('~/.config/vim/plugged')
|
|
" Plug 'ayu-theme/ayu-vim'
|
|
call plug#end()
|
|
|
|
set ideajoin
|
|
set ideastatusicon=gray
|
|
set ideamarks
|
|
set idearefactormode=normal
|
|
set which-key
|
|
set mini-ai
|
|
|
|
" which-key settings
|
|
" https://github.com/TheBlob42/idea-which-key
|
|
let g:WhichKey_ShowVimActions = "true"
|
|
let g:WhichKey_DefaultDelay = 600 " make the popup appear much slower
|
|
let g:WhichKey_PrefixStyle = "bold"
|
|
|
|
" disable the timeout option
|
|
set notimeout
|
|
|
|
" Map esc to :noh
|
|
map <esc> :noh<cr>
|
|
|
|
nmap <leader>j :tabnext<CR>
|
|
nmap <leader>k :tabprevious<CR>
|
|
|
|
nmap <leader>l b #<CR>
|
|
:nmap <c-o> <Action>(Back)
|
|
:nmap <c-i> <Action>(Forward)
|
|
:map <leader>H <Action>(MethodUp)
|
|
:map <leader>L <Action>(MethodDown)
|
|
:map <leader>o <Action>(FileStructurePopup)
|
|
:map <leader>m <Action>(ShowIntentionActions)
|
|
|
|
nmap <leader>ss <Action>(GotoSymbol)
|
|
|
|
" File management and navigation commands
|
|
nmap <leader>fl <Action>(RecentLocations)
|
|
nmap <leader>fc <Action>(FindInPath)
|
|
nmap <leader>fr <Action>(RecentFiles)
|
|
nmap <Leader>fu :action FindUsages<CR>
|
|
nmap <Leader>ff :action GotoFile<CR>
|
|
nmap <leader>fi <Action>(SelectIn)
|
|
nmap <leader>fp <Action>(ReplaceInPath)
|
|
nmap <leader>fo <Action>(OpenFile)
|
|
nmap <leader>fs <Action>(ManageRecentProjects)
|
|
nmap <leader>fw <Action>(CloseActiveTab)
|
|
|
|
nmap <Leader>sr :action RecentFiles<CR>
|
|
nmap <Leader>se :action SearchEverywhere<CR>
|
|
nmap <leader>st <Action>(TextSearchAction)
|
|
nmap <leader>ss <Action>(GotoSymbol)
|
|
nmap <leader>sa <Action>(GotoAction)
|
|
|
|
" Find text
|
|
nmap <Leader>ft :action FindText<CR>
|
|
|
|
nmap <leader>dx <Action>(Debug)
|
|
nmap <leader>dc <Action>(ContextDebug)
|
|
nmap <leader>dv <Action>(ViewBreakpoints)
|
|
nmap <leader>de <Action>(EditBreakpoint)
|
|
nmap <leader>dm <Action>(XDebugger.MuteBreakpoints)
|
|
nmap <leader>dt <Action>(ToggleLineBreakpoint)
|
|
nmap <leader>dC <Action>(RunToCursor)
|
|
nmap <leader>di <Action>(StepInto)
|
|
nmap <leader>do <Action>(StepOver)
|
|
nmap <leader>dr <Action>(Resume)
|
|
nmap <leader>dR <Action>(EvaluateExpression)
|
|
nmap <leader>dw <Action>(ActivateDebugToolWindow)
|
|
|
|
nmap <leader>gd <Action>(GotoDeclaration)
|
|
nmap <leader>go <Action>(GotoSuperMethod)
|
|
nmap <leader>gD <Action>(GotoTypeDeclaration)
|
|
nmap <leader>gi <Action>(GotoImplementation)
|
|
nmap <leader>gT <Action>(GotoTest)
|
|
nmap <leader>gp :action VcsShowPrevChangeMarker<CR>
|
|
nmap <leader>gn :action VcsShowNextChangeMarker<CR>
|
|
|
|
" Trigger tests
|
|
map <Leader>tt <Action>(RiderUnitTestRunContextAction)
|
|
nmap <Leader>cc :action CommentByLineComment<CR>
|
|
|
|
nmap <leader>lf <Action>(ReformatCode)
|
|
nmap <leader>li <Action>(InspectCode)
|
|
:map <leader>lr <Action>(RenameElement)
|
|
nmap <leader>ll <Action>(Refactorings.QuickListPopupAction)
|
|
|
|
nmap <leader>Gc <Action>(Vcs.Show.Local.Changes)
|
|
nmap <leader>Ga <Action>(Annotate)
|
|
|
|
:map <leader>gh <Action>(ShowHoverInfo)
|
|
|
|
nmap <Leader>vv :vsplit<CR>
|
|
nmap <Leader>vs :split<CR>
|
|
|
|
nmap <Leader>ww :action HideAllWindows<CR>
|
|
nmap <Leader>wt :action ActivateTerminalToolWindow<CR>
|
|
nmap <Leader>wd :action ActivateDatabaseToolWindow<CR>
|
|
|
|
" Open project tree window
|
|
nmap <Leader>t :action ActivateProjectToolWindow<CR>
|
|
|
|
nnoremap <leader>cf :action ReformatCode<CR>
|
|
|
|
" Bookmarks
|
|
nmap <leader>bm <Action>(Bookmarks)
|
|
nmap <leader>bs <Action>(ShowBookmarks)
|
|
nmap <leader>bt <Action>(ActivateBookmarksToolWindow)
|
|
nmap <leader>bb <Action>(ToggleBookmark)
|
|
nmap <leader>be <Action>(EditBookmark)
|
|
nmap <leader>bp <Action>(GotoPreviousBookmark)
|
|
nmap <leader>bn <Action>(GotoNextBookmark)
|
|
|
|
nnoremap ge :action GotoNextError<CR>
|
|
nnoremap gE :action GotoPreviousError<CR>
|
|
|
|
" Turn off Copilot
|
|
nmap <leader>cp :action Copilot.Toggle<CR>
|
|
|
|
" Navigate back
|
|
nmap <leader> <C-o>
|
|
|
|
" mark as a global mark/
|
|
nnoremap ma mA
|
|
nnoremap mb mB
|
|
nnoremap mc mC
|
|
nnoremap md mD
|
|
nnoremap me mE
|
|
nnoremap mf mG
|
|
nnoremap mh mH
|
|
nnoremap mi mI
|
|
nnoremap mj mJ
|
|
nnoremap mk mK
|
|
nnoremap ml mL
|
|
nnoremap mm mM
|
|
nnoremap mn mN
|
|
nnoremap mo mO
|
|
nnoremap mp mP
|
|
nnoremap mq mQ
|
|
nnoremap mr mR
|
|
nnoremap ms mS
|
|
nnoremap mt mT
|
|
nnoremap mu mU
|
|
nnoremap mv mV
|
|
nnoremap mw mW
|
|
nnoremap mx mX
|
|
nnoremap my mY
|
|
nnoremap mz mZ
|
|
|
|
" go to global marks
|
|
nnoremap 'a `A
|
|
nnoremap 'b `B
|
|
nnoremap 'c `C
|
|
nnoremap 'd `D
|
|
nnoremap 'e `E
|
|
nnoremap 'f `G
|
|
nnoremap 'h `H
|
|
nnoremap 'i `I
|
|
nnoremap 'j `J
|
|
nnoremap 'k `K
|
|
nnoremap 'l `L
|
|
nnoremap 'm `M
|
|
nnoremap 'n `N
|
|
nnoremap 'o `O
|
|
nnoremap 'p `P
|
|
nnoremap 'q `Q
|
|
nnoremap 'r `R
|
|
nnoremap 's `S
|
|
nnoremap 't `T
|
|
nnoremap 'u `U
|
|
nnoremap 'v `V
|
|
nnoremap 'w `W
|
|
nnoremap 'x `X
|
|
nnoremap 'y `Y
|
|
nnoremap 'z `Z
|
|
|
|
" Harpoon
|
|
nmap <leader><C-1> :action SetHarpoon1<cr>
|
|
nmap <leader><C-2> :action SetHarpoon2<cr>
|
|
nmap <leader><C-3> :action SetHarpoon3<cr>
|
|
nmap <leader><C-4> :action SetHarpoon4<cr>
|
|
nmap <leader><C-5> :action SetHarpoon5<cr>
|
|
nmap <leader><C-6> :action SetHarpoon6<cr>
|
|
nmap <C-1> :action GotoHarpoon1<cr>
|
|
nmap <C-2> :action GotoHarpoon2<cr>
|
|
nmap <C-3> :action GotoHarpoon3<cr>
|
|
nmap <C-4> :action GotoHarpoon4<cr>
|
|
nmap <C-5> :action GotoHarpoon5<cr>
|
|
nmap <C-6> :action GotoHarpoon6<cr>
|
|
nmap <C-e> :action ShowHarpoon<cr>
|
|
nmap <C-a> :action AddToHarpoon<cr>
|
|
|
|
" ---
|
|
|
|
syntax enable
|
|
filetype plugin indent on
|
|
|
|
set termguicolors
|
|
|
|
if has('gui_running')
|
|
set macligatures
|
|
set guifont=JetBrainsMono:h14
|
|
endif
|
|
|
|
" vim: set filetype=vim :
|