These are the new Codegram vimfiles!
If you trust me, do this:
rm -fR ~/.vim && git clone https://github.com/codegram/vimfiles.git ~/.vim && rm ~/.vimrc && ln -s ~/.vim/vimrc ~/.vimrc && git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle && vim +BundleInstall +qa! && clear && echo "Done! :)"
Clone this repo:
$ git clone https://github.com/codegram/vimfiles.git ~/.vim
$ rm ~/.vimrc && ln -s ~/.vim/vimrc ~/.vimrc
Install Vundle:
$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
Set up your ~/vimrc.local with your custom plugins, themes, for example:
" Color theme
Bundle 'sjl/badwolf'
colorscheme badwolf
Open up Vim, and issue this command:
:BundleInstall
TA-DA! Everything's done!
- The leader key is
,(comma).
,nrenames current file, asking for the new name.
- Arrow keys are disabled.
jkis mapped to<ESC>, so you don't have to reach out to<ESC>.
,<Space>clears the search.
,wmaps to:w!: it saves the current buffer.,qmaps to:wqa!: it saves all buffers and quits.<tab>/<S-tab>rotates among open buffers.<leader>dcloses the current buffer.<leader>Dcloses ALL the buffers.
,vopens a new vertical split and switches to it.<C-h>switches to the left split.<C-j>switches to the split below.<C-k>switches to the split above.<C-l>switches to the right split.
,truns the current test file (RSpec, MiniTest or Cucumber).,Truns the specific test under the cursor (RSpec or Cucumber).
<F2>to toggle Paste mode (to paste stuff from the system clipboard).,gbin Visual mode to perform agit blameon the selected lines.,rruns the current buffer in the current RVM Ruby, includinglibandtest.<tab>in Insert mode either indents or autocompletes, depending on the context.
Use Ack to search through your code.
,aperforms an Ack search.<C-n>/<C-p>: Rotate among results.
Auto-closes, parens, curly braces, everything.
First, brew install ctags and run the tags command (found in our
dotfiles) on your working directory to
generate the tag list.
<C-]>to go to the definition of the word under the cursor (constant, method, whatever<C-p>to come back.<F7>/<F9>to rotate among multiple definitions of the same tag.
Fuzzy-find and open files at top speed!
,oTo open the Ctrl-p window. Start typing a file name and press Enter. Plus, if you add a colon and an action it will be performed afterwards (:45will open the file and go to the line 45).
Puts end after a method definition, if clause, etc. (Ruby)
Use Git from Vim.
,gs: Git status.,gc: Git commit.
A fancy status line.
Integration with Rails.
cs"'changes surround from"to'.ysiw"surrounds inside the word with".,'switches'and"quotes.
Comments any kind of code.
,co: In visual mode, comments the selected block.