Created
April 25, 2012 23:47
-
-
Save didenko/2494525 to your computer and use it in GitHub Desktop.
VIM startup file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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