dotfiles/.vimrc
Alan Orth 6b7c49cd0b .vimrc: Add note about solarized 256 colors mode
We're not really even using solarized technically... I prefer the
"degraded" 256 color mode to the 16-color mode; too much blue!
2013-06-06 17:05:16 +03:00

21 lines
642 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
" use 256-color "degraded" mode (default is 16 colors, best when terminal is using solarized colors too)
let g:solarized_termcolors=256
let g:solarized_termtrans=1
colorscheme solarized