From 6cc776dc6147dfdd83be1ce69c2a7ca994010110 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Mon, 23 Jan 2017 17:18:27 -0500 Subject: true color support for tmux and (neo)vim --- tmux.conf | 1 + vimrc | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tmux.conf b/tmux.conf index cbbb0af..a0154b3 100644 --- a/tmux.conf +++ b/tmux.conf @@ -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 diff --git a/vimrc b/vimrc index 128f1b9..cd00b56 100644 --- a/vimrc +++ b/vimrc @@ -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 r :call ToggleSyntasticErrors() " 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 -- cgit v1.2.3