" Vim Bundle
filetype off
set rtp+=~/.vim/bundle/snipmate.vim/snippets/
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
Bundle 'VundleVim/Vundle.vim'
Bundle 'tpope/vim-pathogen'
Bundle 'altercation/vim-colors-solarized'
call vundle#end()
call pathogen#infect()
filetype plugin indent on
syntax enable on
if has('gui_running') || 'xterm-256color' == $TERM
set background=dark
let psc_style='cool'
""" solarized
let &t_Co=256
set t_Co=256
let g:solarized_termcolors = 256
let g:solarized_termtrans = 1
let g:solarized_extra_hi_groups = 1 " ┐
let g:solarized_visibility = "high" " | nice to have
let g:solarized_contrast = "high" " |
let s:base03 = "255" " ┘
" set termguicolors " do not enable
colorscheme solarized
endif