Migrate all github repositories to austenwares.com (to reduce load on github servers)
This commit is contained in:
parent
5c58aff9b7
commit
d55470acc0
59
vim/vimrc
59
vim/vimrc
@ -182,6 +182,9 @@ let g:tex_flavor='latex'
|
||||
syntax on
|
||||
" }
|
||||
|
||||
"Symfony
|
||||
let g:symfony_app_console_caller="php"
|
||||
let g:symfony_app_console_path="bin/console"
|
||||
"Signify
|
||||
let g:signify_vcs_list = [ 'git', 'svn' ]
|
||||
let g:signify_difftool = 'diff'
|
||||
@ -250,39 +253,39 @@ else
|
||||
call plug#begin('~/.vim/plugged')
|
||||
endif
|
||||
" Code writing {
|
||||
Plug 'Chiel92/vim-autoformat', { 'on': 'Autoformat'}
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-autoformat', { 'on': 'Autoformat'}
|
||||
"Adds autoformat command | https://github.com/Chiel92/vim-autoformat
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-surround'
|
||||
"Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround
|
||||
Plug 'scrooloose/syntastic'
|
||||
Plug 'https://austenwares.com/gogs/vim/syntastic'
|
||||
"Syntax checker | https://github.com/scrooloose/syntastic
|
||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
Plug 'https://austenwares.com/gogs/vim/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
"File browser | https://github.com/scrooloose/nerdtree
|
||||
Plug 'Lokaltog/vim-easymotion'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-easymotion'
|
||||
"Move around quickly in a document | https://github.com/Lokaltog/vim-easymotion
|
||||
Plug 'sjl/gundo.vim', { 'on': 'GundoToggle' }
|
||||
Plug 'https://austenwares.com/gogs/vim/gundo.vim', { 'on': 'GundoToggle' }
|
||||
"Visual undo | https://github.com/sjl/gundo.vim
|
||||
Plug 'tommcdo/vim-exchange'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-exchange'
|
||||
"Exchange two selections of text | https://github.com/tommcdo/vim-exchange
|
||||
Plug 'tpope/vim-repeat'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-repeat'
|
||||
"Repeat last tpope command with . | https://github.com/tpope/vim-repeat
|
||||
Plug 'tpope/vim-fugitive', { 'on': ['Gstatus','Gcommit'] }
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-fugitive', { 'on': ['Gstatus','Gcommit'] }
|
||||
"Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive
|
||||
Plug 'kien/ctrlp.vim'
|
||||
Plug 'https://austenwares.com/gogs/vim/ctrlp.vim'
|
||||
"Fuzzy file search | https://github.com/kien/ctrlp.vim
|
||||
Plug 'godlygeek/tabular', { 'on': 'Tab' }
|
||||
Plug 'https://austenwares.com/gogs/vim/tabular', { 'on': 'Tab' }
|
||||
"Quickly make tables in vim | https://github.com/godlygeek/tabular
|
||||
Plug 'sirver/UltiSnips'
|
||||
Plug 'https://austenwares.com/gogs/vim/UltiSnips'
|
||||
"Adds snippet support | https://github.com/sirver/UltiSnips
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-snippets'
|
||||
"Add snippets | https://github.com/honza/vim-snippets
|
||||
Plug 'othree/eregex.vim'
|
||||
Plug 'https://austenwares.com/gogs/vim/eregex.vim'
|
||||
"Real regexes in vim | https://github.com/othree/eregex.vim
|
||||
Plug 'mhinz/vim-signify'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-signify'
|
||||
"Git information inline | https://github.com/mhinz/vim-signify
|
||||
Plug 'https://github.com/jiangmiao/auto-pairs'
|
||||
Plug 'https://austenwares.com/gogs/vim/auto-pairs'
|
||||
"Automatic pairs | https://github.com/jiangmiao/auto-pairs
|
||||
Plug 'https://github.com/Valloric/YouCompleteMe'
|
||||
Plug 'https://austenwares.com/gogs/vim/YouCompleteMe'
|
||||
"Autocompletion | https://github.com/Valloric/YouCompleteMe
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-java-getset.git'
|
||||
"Java getters and setters| https://austenwares.com/gogs/vim/vim-java-getset.git
|
||||
@ -290,37 +293,39 @@ endif
|
||||
"Double tap for comments
|
||||
" }
|
||||
" Style {
|
||||
Plug 'nathanaelkane/vim-indent-guides'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-indent-guides'
|
||||
"Indentation guides | https://github.com/nathanaelkane/vim-indent-guides
|
||||
Plug 'bling/vim-airline'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-airline'
|
||||
"Bottom status bar | https://github.com/bling/vim-airline
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-colors'
|
||||
"Theme pack | https://github.com/spf13/vim-colors
|
||||
Plug 'godlygeek/csapprox'
|
||||
Plug 'https://austenwares.com/gogs/vim/csapprox'
|
||||
"256 color vim in terminal | https://github.com/godlygeek/csapprox
|
||||
" }
|
||||
" Syntax {
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-polyglot'
|
||||
"Many languages | https://github.com/sheerun/vim-polyglot
|
||||
Plug 'superbrothers/vim-vimperator'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-vimperator'
|
||||
"Vimperator for vim | https://github.com/superbrothers/vim-vimperator
|
||||
Plug 'PotatoesMaster/i3-vim-syntax'
|
||||
Plug 'https://austenwares.com/gogs/vim/i3-vim-syntax'
|
||||
"i3 syntax | https://github.com/PotatoesMaster/i3-vim-syntax
|
||||
" }
|
||||
" Misc {
|
||||
Plug 'mattn/flappyvird-vim', { 'on': [] }
|
||||
Plug 'https://austenwares.com/gogs/vim/flappyvird-vim', { 'on': [] }
|
||||
"The amazing Flappy Bird game | https://github.com/mattn/flappyvird-vim
|
||||
Plug 'jamessan/vim-gnupg'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-gnupg'
|
||||
"GPG support | https://github.com/jamessan/vim-gnupg
|
||||
Plug 'https://github.com/ConradIrwin/vim-bracketed-paste'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-bracketed-paste'
|
||||
"Automatic :set paste funcationality | https://github.com/ConradIrwin/vim-bracketed-paste
|
||||
" }
|
||||
" Unused {
|
||||
"Plug 'https://github.com/zenbro/mirror.vim'
|
||||
"Plug 'https://austenwares.com/gogs/vim/mirror.vim'
|
||||
" "Edit files remotely | https://github.com/zenbro/mirror.vim
|
||||
" }
|
||||
" Staging {
|
||||
"Plug 'https://github.com/idanarye/vim-vebugger'
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-symfony'
|
||||
|
||||
"Plug 'idanarye/vim-vebugger'
|
||||
"Debugger | https://github.com/idanarye/vim-vebugger
|
||||
" }
|
||||
call plug#end()
|
||||
|
Loading…
Reference in New Issue
Block a user