diff options
author | Matt Singleton <matt@xcolour.net> | 2017-01-23 17:18:27 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2017-01-23 17:20:07 -0500 |
commit | 6cc776dc6147dfdd83be1ce69c2a7ca994010110 (patch) | |
tree | 3334b87f6dff232bf92bf5b228c576eb71ed6138 | |
parent | 872e66f5bf5ba592d9b29be017c14d20b170ee2f (diff) |
true color support for tmux and (neo)vim
-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 |