diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-16 17:36:41 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-16 17:36:41 +0200 |
commit | 79926c8d7b62b68071cb5f4930aed6c323e7a3da (patch) | |
tree | 02c5cedc7a0eae3340ce1d9056490ea06ca559ff | |
parent | e652a883cfa7c1a72ff27f4a5d020c0412718737 (diff) | |
download | vim-79926c8d7b62b68071cb5f4930aed6c323e7a3da.zip vim-79926c8d7b62b68071cb5f4930aed6c323e7a3da.tar.gz |
use solarized colour theme
-rwxr-xr-x | install | 1 | ||||
-rw-r--r-- | vimrc | 23 |
2 files changed, 15 insertions, 9 deletions
@@ -25,6 +25,7 @@ GIT_URLS=" github.com/tpope/vim-haml.git github.com/tpope/vim-markdown.git github.com/majutsushi/tagbar + github.com/altercation/vim-colors-solarized.git " [ ! -d $DIR/bundle ] && mkdir $DIR/bundle cd $DIR/bundle @@ -3,16 +3,21 @@ call pathogen#infect() " color scheme -map <F12> :let &background = ( &background == "dark" ? "light" : "dark" )<CR> -if !empty($DISPLAY) - set t_Co=256 - colorscheme desert256 -else - colorscheme adobe -endif +" map <F12> :let &background = ( &background == "dark" ? "light" : "dark" )<CR> +" if !empty($DISPLAY) +" set t_Co=256 +" colorscheme desert256 +" else +" colorscheme adobe +" endif + +syntax enable +set background=dark +colorscheme solarized +call togglebg#map("<F5>") -" Switch syntax highlighting on, when the terminal has colors " Also switch on highlighting the last used search pattern. +" Switch syntax highlighting on, when the terminal has colors if &t_Co > 2 || has("gui_running") syntax on set hlsearch @@ -30,7 +35,7 @@ set nofsync :au BufNewFile * :exe("0r! ~/.vim/skeletons.rb %:p " . &filetype) :au Filetype html,xml,xsl source ~/.vim/scripts/closetag.vim -set list +" set list " set cursorline " set cursorcolumn set foldmethod=marker |