diff options
-rw-r--r-- | tmux.conf | 1 | ||||
-rw-r--r-- | vimrc | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -11,6 +11,7 @@ set -g status-left-bg green set -g status-left-fg white set -g set-titles on set -g default-terminal "screen-256color" +set-option -ga terminal-overrides ",xterm-256color:Tc" # reversed to match vim split names bind-key v select-layout even-horizontal @@ -11,7 +11,7 @@ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'scrooloose/nerdtree' -Bundle 'altercation/vim-colors-solarized' +Bundle 'iCyMind/NeoSolarized' Bundle 'vim-scripts/bufexplorer.zip' Bundle 'kien/ctrlp.vim' Bundle 'pangloss/vim-javascript' @@ -156,12 +156,13 @@ nnoremap <leader>r :call ToggleSyntasticErrors()<Enter> " visual " +set termguicolors "true color let g:solarized_visibility="high" "trailing characters very visible let g:solarized_menu=0 "don't show the gui menu set synmaxcol=500 syntax on set background=light -colo solarized +colo NeoSolarized set hlsearch " don't mess up gutter highlight with gitgutter |