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

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;