Skip to content

Commit

Permalink
Finish switching
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeastock committed Jun 22, 2015
1 parent 41267ad commit 23b5e5f
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 69 deletions.
11 changes: 8 additions & 3 deletions hooks/post-up
@@ -1,6 +1,11 @@
#!/bin/zsh

if [ ! -e $HOME/.vim/bundle/vundle ]; then
git clone https://github.com/gmarik/vundle.git $HOME/.vim/bundle/vundle
if [ ! -e $HOME/.vim/autload/plug.vim ]; then
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
nvim -u $HOME/.vimrc.bundles +BundleInstall +qall
if [ ! -e $HOME/.nvim/autload/plug.vim ]; then
curl -fLo ~/.nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
nvim -u $HOME/.vimrc.plugins +PlugInstall +qall
66 changes: 0 additions & 66 deletions vimrc.bundles

This file was deleted.

59 changes: 59 additions & 0 deletions vimrc.plugins
@@ -0,0 +1,59 @@
call plug#begin('~/.vim/plugged')

Plug 'kana/vim-textobj-user'
Plug 'nelstrom/vim-textobj-rubyblock'
Plug 'ecomba/vim-ruby-refactoring'

"fuzzy finding
Plug 'junegunn/fzf'

"looks
Plug 'airblade/vim-gitgutter'
Plug 'ervandew/supertab'
Plug 'itchyny/lightline.vim'

"workflow
Plug 'tomtom/tcomment_vim'
Plug 'junegunn/vim-easy-align'
Plug 'tmhedberg/matchit'
Plug 'Shougo/neocomplcache.vim'
Plug 'pbrisbin/vim-mkdir'
Plug 'justinmk/vim-sneak'
Plug 'kassio/neoterm'
Plug 'ap/vim-buftabline'
" Plug 'ngmy/vim-rubocop'
" Plug 'cespare/vim-sbd'
" Plug 'rking/ag.vim'

"langauge specific
Plug 'suan/vim-instant-markdown'
Plug 'fatih/vim-go'
Plug 'derekwyatt/vim-scala'
Plug 'pangloss/vim-javascript'
Plug 'elixir-lang/vim-elixir'

"tpope
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-dispatch'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
" Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }

"testing
Plug 'janko-m/vim-test'
" Plug 'jgdavey/tslime.vim'

"colors
Plug 'ajh17/Spacegray.vim'
Plug 'nanotech/jellybeans.vim'
Plug 'ChrisKempson/Vim-Tomorrow-Theme'
Plug 'morhetz/gruvbox'
Plug 'Keithbsmiley/rspec.vim'
Plug 'sjl/badwolf'
Plug 'jpo/vim-railscasts-theme'
Plug 'chriskempson/base16-vim'
Plug 'flazz/vim-colorschemes'

call plug#end()

0 comments on commit 23b5e5f

Please sign in to comment.