Skip to content

Instantly share code, notes, and snippets.

@midnai
Last active August 29, 2015 14:25
Show Gist options
  • Save midnai/1740b23a7264aee48221 to your computer and use it in GitHub Desktop.
Save midnai/1740b23a7264aee48221 to your computer and use it in GitHub Desktop.
Configuring Vim on Mac OS X
Verify and create directories:
You’ll need to create directories for the following: backups, colors, swaps and undo.
You can download for example your favorite color schema by vimninjas.com and paste in the relevant scheme file ~/.vim/colors/
$cd ~/.vim;
$mkdir backups;
$mkdir colors;
$mkdir swaps;
$mkdir undo;
For config you verify or create ~/.vimrc file
For example to set color schema candy:
1. Download you schema by vimninjas.com
2. Copy and paste the code into ~/.vim/colors/
3. In your file ~/.vimrc write -> colorscheme candy
4. Its done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment