* duhanebel/vundle_migration:
Remove "press a key to continue" before vundle_install
Fix a bug preventing the correct update of vim
Change duhanebel's forked repos to originals
Fix a typo on the Rakefile
Fix a bug that was preventing a clean install
Change rake file to reuse methods in vundle.rb
Update zsh alias to support new yadr's commands
Add yadr command line tools to remove/list plugins
Update yadr's binary to support Vundle
Update Rakefile to manage pathogen-to-vundle upgrade
Remove csapprox
Move mapleader definition to vimrc
Change vimrc to use Vundle instead of pathogen
Add bundle to .gitignore
Remove all vim submodules
Conflicts:
.gitmodules
When rake install/update is run for the second time, any .backup
file created by the first run it's going to be overwritten by
the new symlink even if the current file is the same as the one
we are going to write.
The rakefile now checks if the symlink we are going to create
points to the same target as the one already there and if that's
the case, doesn't overwrite any backup.
The prezto install procedure now checks to make sure the user
doesn't have an alternative version of zsh installed before changing
the current shell preference with "chsh".
This may be the case when an user is already using zsh but on a
different version from the one shipped with OS X
Fixes#264
The Rakefile now detects if pathogen is installed and in that case
it performs the following operations:
1. Moves vim/bundle to vim/bundle.old
2. Removes all the submodules from git config and cache
3. Initializes and updates the new submodules (zsh and bundle)
4. Runs the vundle installer that takes care of the rest
Both solarized dark and light are now included in the subdir
iTerm2. They are copies from the original repo because it doesn't
seem worth to clone a ~10Mb repo just to keep in sync 2 files,
considering that solarized hasn't changed much in the past years.
The rakefile has been updated to trigger the automatic installation
of these two themes only if OS == OSX. The user will still have
to set the themes for his/her current profile manually (but that's
explained at the end of the installation process).
Sorin's OMZ rewrite is a bit nicer, as it's written in more
native style ZSH, doesn't do auto updates, and incorporates
many bugfixes, and is more actively maintained than Robby's branch.
For now, YADR supports both, so if you want to try out the sorin
branch, go to sorin-ionescu/oh-my-zsh, install it, and rerun
the YADR installer so that the skwp theme is installed for you.
If you want to have them side by side for comparison, rename the
old robby one to ~/.oh-my-zsh.robby or similar, so you can toggle
back and forth through renames, or symlinks.
There's a stray backtick in the Rakefile which causes the installer to
fail copying files. This commit removes the backtick and relocates a
right brace to make everything work properly.