numbers.vim is a plugin that allows for easy switch between
absolute and relative line numbers.
A convenient shortcut: ,tn (toggle numbers) is provided to
switch between the two modes
Fixes#276
The tree buffer makes it easy to drill down through the directories of
your git repository, but it’s not obvious how you could go up a level to
the parent directory. This new mappings ".." helps.
Adding and removing vim plugins is now done by adding and removing
from ~/.vim/.vundles.local. This file is sourced at the end of
vundles.vim
Fixes#275
The rake script now detects the available iTerm2 profiles and
installs the solarized scheme where needed.
It's an interactive procedure that requires selection by the user.
After indenting/unindenting the selected lines of code, vim
deselects forcing the user to reapply the selection in order to
indent multiple times.
This remap fixes the problem.
Instead of asking the user to clone the repo and running rake
install, there's is now an easy .sh script that can be downloaded
and invoked in a single line.
The script takes a parameter "ask" if the use prefers to control
which modules of yadr are installed.
rake install/update was executing git clean with the -x flag that
force the removal of ignored files. Since .vim.after was listed
inside .gitignore, this was causing the file to be removed on
each update.
I don't think we need to remove ignored files since are all
temporary or user-specific configuration files that should
persist between updates.
Fixes#225
tpope/bundler won't work without this plugin on a project
that uses dvm when mvim is not launched from within the
project's directory.
Using the command :Rvm will source the right GEM_HOME
so that :Bedit [gem] is able to look in the right place.
* 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.