Last active
February 16, 2017 16:40
-
-
Save dgholz/bd4abe14ae718adfd8c4f36d4063e444 to your computer and use it in GitHub Desktop.
for each in ~/.vim/bundle/*/.git; do git -C $( dirname $each ) remote get-url origin; done | sort -k2 -t /
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " [email protected]:tpope/vim-pathogen.git | |
| runtime bundle/vim-pathogen/autoload/pathogen.vim | |
| execute pathogen#infect() | |
| " [email protected]:altercation/vim-colors-solarized.git | |
| set background=dark | |
| colorscheme solarized | |
| " [email protected]:ctrlpvim/ctrlp.vim.git | |
| let g:ctrlp_map = '<c-p>' | |
| let g:ctrlp_cmd = 'CtrlP' | |
| let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] | |
| syntax on | |
| filetype indent on | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| filetype plugin on | |
| set hlsearch | |
| nnoremap <silent> /<CR> :nohlsearch<CR> | |
| nnoremap <silent> /<esc> :nohlsearch<CR> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [email protected]:ajh17/VimCompletesMe.git | |
| [email protected]:ctrlpvim/ctrlp.vim.git | |
| [email protected]:altercation/vim-colors-solarized.git | |
| [email protected]:tpope/vim-fugitive.git | |
| [email protected]:dietsche/vim-lastplace.git | |
| [email protected]:tpope/vim-pathogen.git | |
| [email protected]:tpope/vim-surround.git | |
| [email protected]:tpope/vim-unimpaired.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment