From 4da6b047287a6e5bccbc715e59c6f4cf9f2201c1 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Wed, 10 Jul 2013 21:31:40 -0500 Subject: [PATCH] making the highlighing of tab chars less annoying --- vim/vimrc.symlink | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 7ef6647..fe11c71 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -40,6 +40,7 @@ if (!exists('vimrc_already_sourced')) Bundle 'juvenn/mustache.vim' Bundle 'tclem/vim-arduino' Bundle 'bling/vim-airline' + " Bundle 'scrooloose/syntastic' filetype plugin indent on endif @@ -160,7 +161,7 @@ syntax on set encoding=utf8 set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors" set background=dark -colorscheme ir_black +colorscheme solarized " set number " show line numbers set relativenumber " show relative line numbers @@ -229,6 +230,7 @@ noremap :set hlsearch! hlsearch? " toggle invisible characters set invlist set listchars=tab:▸\ ,eol:¬,trail:⋅,extends:❯,precedes:❮ +highlight SpecialKey ctermbg=none " make the highlighting of tabs less annoying set showbreak=↪ nmap l :set list! @@ -402,6 +404,6 @@ let g:ctrlp_working_path_mode = 2 " airline options let g:airline_left_sep='' let g:airline_right_sep='' -let g:airline_theme='dark' +let g:airline_theme='solarized2' let vimrc_already_sourced = 1