set number relativenumber set ideajoin set linenumber set showmode set showcmd set incsearch set hlsearch set scrolloff=10 set visualbell set ignorecase set smartcase set notimeout set clipboard+=unnamed " 3rd party set which-key set surround set highlightedyank " Which Key let g:WhichKey_FontSize = 16 let g:WhichKey_CommandColor = "#41ead4" let g:WhichKey_PrefixColor = "#f335b2" let g:WhichKey_SortOrder = "by_key_prefix_first" " NerdTree Plug 'preservim/nerdtree' nnoremap :NERDTree let g:NERDTreeWinSize=30 let g:NERDTreeMapPreview=0 let g:NERDTreeMapActivateNode='l' let g:NERDTreeMapJumpParent='h' let mapleader=' ' noremap lr :action ExtractMethod " Manage Projects noremap s :action ManageRecentProjects " Tab Navigation noremap :action NextTab noremap :action PreviousTab " Pane Navigation noremap h noremap l noremap k noremap j " File Navigation map ff (GoToFile) map (RecentFiles) map fl (RecentLocations) map fs (NewScratchFile) " Center Screen with Page up and down nnoremap zz nnoremap zz " Window Management map % (SplitVertically) map " (SplitHorizontally) map x (CloseContent) map wm (MoveEditorToOppositeTabGroup) " Popup Navigation inoremap (PopupMenu-selectNext) inoremap (PopupMenu-selectPrev) " Debug options map dd (Debug) map db (ToggleLineBreakpoint) " Actions map am (ShowIntentionActions) map as (SearchEverywhere) " Refactoring map rn (RenameElement) map re (ExtractMethod) map rv (IntroduceVariable) map rf (IntroduceField) map rs (ChangeSignature) map rr (Refactorings.QuickListPopupAction) " Go To Code map gd (GoToDeclaration) map gy (GotoTypeDeclaraton) map gi (GotoImplementation) map gu (ShowUsages) map gt (GotoTest) map gf (Back) map gb (Forward) " Go Tag map gt :action IntentionActionAsAction_com.goide.inspections.tag.GoTagAddKeyIntention " Errors map en (ReSharperGotoNextErrorInSolution) map ep (ReSharperGotoPrevErrorInSolution) " Menu map mm (MainMenu) map ma (AnalyzeMenu) map mb (BuildMenu) map mc (CodeMenu) map mf (FindMenuGroup) map mg (GoToMenu) map ms (ScopeViewPopupMenu) map mt (EditorTabPopupMenu) map mw (ToolWindowsGroup)