Added italics config to tmux
This commit is contained in:
parent
c748106046
commit
fe57223828
3
config/terminfo/screen-256color-italic.terminfo
Normal file
3
config/terminfo/screen-256color-italic.terminfo
Normal 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,
|
6
config/terminfo/tmux.terminfo
Normal file
6
config/terminfo/tmux.terminfo
Normal 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
7
setup
@ -57,3 +57,10 @@ SYMLINK_CONFIG "compton" "compton.conf";
|
|||||||
SYMLINK_CONFIG "i3" "config";
|
SYMLINK_CONFIG "i3" "config";
|
||||||
SYMLINK_CONFIG "kitty" "kitty.conf";
|
SYMLINK_CONFIG "kitty" "kitty.conf";
|
||||||
SYMLINK_CONFIG "kitty" "theme.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;
|
||||||
|
@ -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"
|
bind-key -n M-r source-file ~/.tmux.conf\; display "TMUX CONFIG RELOADED"
|
||||||
|
|
||||||
# force color
|
# force color
|
||||||
set -g default-terminal "screen-256color"
|
set -g default-terminal "tmux"
|
||||||
|
|
||||||
# force utf-8
|
# force utf-8
|
||||||
setw -gq utf8 on
|
setw -gq utf8 on
|
||||||
|
Loading…
Reference in New Issue
Block a user