0
0
Solarized color scheme works fine when using Konsole + vim, but I can't figure out how to properly configure my computer for a Konsole + tmux +vim usage (please see screenshots on the links).
Below, the configuration I am using.
At Konsole:
user:~$ echo $TERM
xterm-256color
user:~$ cat .tmux.conf | grep terminal
set -g default-terminal "xterm-256color" #"screen-256color" gives the same result
user:~$ cat .vimrc
:filetype plugin on
syntax enable
set term=xterm-256color
let g:solarized_termcolors=256
set t_Co=256
set background=dark
colorscheme solarized
At tmux:
user:~$ echo $TERM
xterm-256color
Would you have any suggestion, please?
Maybe you should set
term
toscreen-256color
instead ofxterm-256color
. [http://superuser.com/a/399326/431697] Also, try invoking tmux with the-2
option. – Philipp Moers – 2015-11-24T00:46:17.393