comparison vim/vimrc @ 217:6ee245fa8a3d

Proper colors in iTerm2, and now using solarized for a change.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 11 Sep 2014 23:13:55 -0700
parents 769869e61101
children b87391429145
comparison
equal deleted inserted replaced
216:3a4eebcf7a1a 217:6ee245fa8a3d
186 cd ~/ 186 cd ~/
187 endif 187 endif
188 188
189 " Default color scheme. 189 " Default color scheme.
190 if has('gui_running') 190 if has('gui_running')
191 set background=light 191 set background=dark
192 else 192 else
193 set background=dark 193 set background=dark
194 endif 194 let g:solarized_termcolors = 256
195 colorscheme badwolf 195 "let g:solarized_termtrans = 1
196 endif
197 colorscheme solarized
196 198
197 " Enable file type detection. 199 " Enable file type detection.
198 filetype indent plugin on 200 filetype indent plugin on
199 201
200 " }}} 202 " }}}