Add .vsvimrc config file
parent
103e3ef828
commit
2efdb75976
1
Makefile
1
Makefile
|
@ -143,6 +143,7 @@ link_vim: check_os
|
|||
@echo "Linking vim files..."
|
||||
$(call link,vim,.vim)
|
||||
$(call link,ideavimrc,.ideavimrc)
|
||||
$(call link,vsvimrc,.vsvimrc)
|
||||
|
||||
.PHONY: link_apps_config
|
||||
link_apps_config: check_os
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
source ~/.vim/vimrc
|
||||
source ~/.vim/plugins.vim
|
||||
|
||||
nnoremap <C-p> :vsc MonoDevelop.Ide.Commands.SearchCommands.GotoFile <CR>
|
||||
nnoremap gr :vsc MonoDevelop.Refactoring.RefactoryCommands.FindReferences <CR>
|
||||
nnoremap K :vsc MonoDevelop.Ide.Commands.TextEditorCommands.ShowQuickInfo <CR>
|
||||
nnoremap gD :vsc MonoDevelop.RefactoryCommands.NavigationCommands.FindBaseSymbols <CR>
|
||||
nnoremap <C-w>o :vsc MonoDevelop.Ide.Commands.FileTabCommands.CloseAllButThis <CR>
|
||||
|
||||
nnoremap <C-o> :vsc MonoDevelop.Ide.Commands.NavigationCommands.NavigateBack <CR>
|
||||
nnoremap <C-i> :vsc MonoDevelop.Ide.Commands.NavigationCommands.NavigateForward <CR>
|
Loading…
Reference in New Issue