dotfiles/.vimrc
Alan Orth f1b3556e69 .vimrc: Back to dark config
It's so sexy, and I just can't hack the light one.
2013-05-02 21:45:06 +03:00

19 lines
507 B
VimL

set nu
set ts=4
set expandtab
set sw=4
set bs=2
set bg=dark
set paste
set wildmode=longest,list " change filename autocomplete to be more like bash
set mouse=v " some vim defaults to mouse=a, which sucks for copying and pasting in Xorg
syntax on
if version >= 600
filetype on " enable file type detection
filetype plugin on " enable file type plugins
filetype indent on " enable file type indents
endif
let g:solarized_termcolors=256
colorscheme solarized