What you use to edit code is any other tool and it comes down to personal preference. Personally I LOVE Vim. There are hundred different ways you could set up Vim. This is the setup that's worked best for me. Hope you enjoy it as well.
First things first
Install MacVim or Gvim (For Debian based distros install with apt-get). I do frequently use terminal Vim or Vi but I like having both available. If you're on Windows you probably want to spin up a Linux box or a VM. Ruby on Rails development on Windows is going to painful.
Let's Get Plugged In
Download pathogen.vim it makes managing Vim plugins a lot simpler. Create a ~/.vim/autoload/ directory and copy pathogen.vim into it.
$ mkdir ~/.vimNext you need to create and edit your .vimrc file so that pathogen gets loaded in the correct order.
$ mkdir ~/.vim/autoload
$ cp ~/Downloads/pathogen.vim ~/.vim/autoload/
$ mvim ~/.vimrcContent:
call pathogen#runtime_prepend_subdirectories(expand('~/.vimbundles'))Create a .gvimrc to specify colorscheme
set tabstop=2
set smarttab
set shiftwidth=2
set autoindent
set expandtab
$ mvim ~/.gvimrcContent:
colorscheme vividchalkCreate a ~/.vimbundles directory and install plugins. I prefer to clone them from github.com when I can. Some plugins still need to be downloaded from vim.org, extracted and copied to your .vimbundles directory. Either way go vote up plugins you find useful on vim.org. If you don't have git installed check out git-scm.com
$ mkdir ~/.vimbundlesInstall rails.vim
$ cd ~/.vimbundles
$ git clone git://github.com/tpope/vim-rails.gitInstall cucumber.vim
$ git clone git://github.com/tpope/vim-cucumber.gitInstall vividchalk.vim
$ git clone git://github.com/tpope/vim-vividchalk.gitInstall haml.vim (There are two. I use Tim Pope's.)
$ git clone git://github.com/tpope/vim-haml.gitInstall endwise.vim
$ git clone git://github.com/tpope/vim-endwise.gitInstall surround.vim
$ git clone git://github.com/tpope/vim-surround.gitInstall unimpaired.vim
$ git clone git://github.com/tpope/vim-unimpaired.gitInstall abolish.vim
$ git clone git://github.com/tpope/vim-abolish.gitInstall repeat.vim
$ git clone git://github.com/tpope/vim-repeat.gitInstall NERD_tree.vim
$ git clone git://github.com/scrooloose/nerdtree.gitInstall NERD_commenter.vim
$ git clone git://github.com/scrooloose/nerdcommenter.gitRestart Vim and you now have a super powerful Rails editor at your fingertips. Check out each of the plugins for documentation of features.
http://www.adamlowe.me/2009/12/vim-destroys-all-other-rails-editors.html
No comments:
Post a Comment