Skip to content

Instantly share code, notes, and snippets.

@dgholz
Last active February 16, 2017 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgholz/bd4abe14ae718adfd8c4f36d4063e444 to your computer and use it in GitHub Desktop.
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 /
" git@github.com:tpope/vim-pathogen.git
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
" git@github.com:altercation/vim-colors-solarized.git
set background=dark
colorscheme solarized
" git@github.com: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>
git@github.com:ajh17/VimCompletesMe.git
git@github.com:ctrlpvim/ctrlp.vim.git
git@github.com:altercation/vim-colors-solarized.git
git@github.com:tpope/vim-fugitive.git
git@github.com:dietsche/vim-lastplace.git
git@github.com:tpope/vim-pathogen.git
git@github.com:tpope/vim-surround.git
git@github.com:tpope/vim-unimpaired.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment