diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100755 index 0000000..073049f --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,14 @@ +# set -g default-terminal screen-256color +set -g default-terminal "tmux-256color" +set -ga terminal-overrides ",*256col*:Tc" +set -g mouse on +bind r source-file ~/.tmux.conf \; display ​"Reloaded!" + +set-option -g history-limit 5000 +setw -g automatic-rename on + +set-option -g status-position top + +# set the status line's colors +set -g status-style fg=black,bg=#928374 + diff --git a/vim/.vimrc b/vim/.vimrc index ce561f2..b3df6ea 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -169,3 +169,10 @@ packloadall " Load all of the helptags now, after plugins have been loaded. " All messages and errors will be ignored. silent! helptags ALL + +" tmux color correction +if exists('+termguicolors') + let &t_8f = "\[38;2;%lu;%lu;%lum" + let &t_8b = "\[48;2;%lu;%lu;%lum" + set termguicolors +endif