nicksloan / vim-dotfiles

Carefully crafted, curated and language-agnostic Vim development environment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Preface

This vim-dotfiles repo has been forked from the one created by my pal Joël Perras. I don't claim credit or a complete understanding of anything in here. Please see the original.

Vim dotfiles

These are the vim runtime files that I use on a daily basis. Feel free to clone, modify, change, add, murder or remove portions of it at will.

I used to be a heavy advocate and user of Pathogen by the most excellent Tim Pope, but I have recently switched to Vundle, because I got tired of futzing around with git submodules every time I wanted to update or remove a bundle, but I still wanted a way of controlling my entire Vim runtime from some centralized source. Vundle seems to hit all the right sweet spots.

Usage

NOTE: If you have existing files in $HOME/.vim or $HOME/.vimrc, make sure you take appropriate backups before performing any of the following steps.

$ git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  • Next, get my vim-dotfiles & symlink the .vimrc to your $HOME/.vimrc:
$ git clone git@github.com:jperras/vim-dotfiles.git ~/.vim && ln -s ~/.vim/.vimrc ~/.vimrc
  • Finally, we need to launch Vim and then invoke the appropriate Vundle commands to install all of the bundles using the :BundleInstall command. When this is completed you'll need to build the C extension for the Command-T plugin plugin, which is a simple matter of cd'ing in to the command-t bundle folder and invoking rake make. I'm not quite sure if this process could somehow be automated with Vundle; if not, then that would be a fun addition to make to the project.

And that's it! Be sure to source your newly installed configuration (:source $MYVIMRC from inside Vim, or just restart a new editor session), and you should be good to go.

The included .vimrc contains some very minimal configurations that should be sane defaults for most developers, including a colorscheme that is pulled from one of the installed bundles. Feel free to modify at will, of course. See the comments in the .vimrc file for more details, and check out the individual bundles that are pulled in on github until I decide to annotate & comment on what each of them do.

Screenshot

And here's a gratuitous screenshot: screenshot of vim colorscheme & some configs in action

About

Carefully crafted, curated and language-agnostic Vim development environment


Languages

Language:Vim Script 80.3%Language:Shell 10.9%Language:Python 8.8%