Added italics config to tmux

This commit is contained in:
Wryn Wagner 2020-01-23 16:04:49 -07:00
parent c748106046
commit fe57223828
4 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,3 @@
screen-256color-italic|screen with 256 colors and italic,
sitm=\E[3m, ritm=\E[23m, kbs=\177,
smso=\E[7m, rmso=\E[27m, use=screen-256color,

View File

@ -0,0 +1,6 @@
tmux|tmux terminal multiplexer,
ritm=\E[23m, rmso=\E[27m, sitm=\E[3m, smso=\E[7m, Ms@,
use=xterm+tmux, use=screen,
tmux-256color|tmux with 256 colors,
use=xterm+256setaf, use=tmux,

7
setup
View File

@ -57,3 +57,10 @@ SYMLINK_CONFIG "compton" "compton.conf";
SYMLINK_CONFIG "i3" "config";
SYMLINK_CONFIG "kitty" "kitty.conf";
SYMLINK_CONFIG "kitty" "theme.conf";
function terminfo_setup() {
for file in $(find "$HOME/.wryn/config/terminfo" -type f); do
tic -x $file;
done
}
terminfo_setup;

View File

@ -8,7 +8,7 @@ bind-key r source-file ~/.tmux.conf\; display "TMUX CONFIG RELOADED"
bind-key -n M-r source-file ~/.tmux.conf\; display "TMUX CONFIG RELOADED"
# force color
set -g default-terminal "screen-256color"
set -g default-terminal "tmux"
# force utf-8
setw -gq utf8 on