Skip to content

Instantly share code, notes, and snippets.

@didenko
Created April 25, 2012 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save didenko/2494525 to your computer and use it in GitHub Desktop.
Save didenko/2494525 to your computer and use it in GitHub Desktop.
VIM startup file
set nocompatible
set backspace=indent,eol,start
set backup
set backupdir=~/tmp,/tmp,.
set directory=~/tmp,/tmp,.
set history=1000
set ruler
set showcmd
set mouse=a
set autoindent
syntax on
set number
set hlsearch
set t_Co=256
if has("gui_running")
set background=light
" https://github.com/altercation/solarized/tree/master/vim-colors-solarized
colorscheme solarized
else
set background=dark
" http://hcalves.deviantart.com/art/Mustang-Vim-Colorscheme-98974484
colorscheme mustang
endif
" http://levien.com/type/myfonts/inconsolata.html
set gfn=Inconsolata:h14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment