From 14d359527b6f6d078912f6945202f45fbbee7240 Mon Sep 17 00:00:00 2001 From: Tommy Harris Date: Sat, 5 Jun 2021 13:30:40 -0600 Subject: [PATCH] Add .tmux.conf for TERM settings Signed-off-by: Tommy Harris --- Makefile | 9 +++++++-- tmux/.tmux.conf | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 tmux/.tmux.conf diff --git a/Makefile b/Makefile index 2dce4b7..aa2cd22 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ clean: stow -t "$$HOME" -D oh-my-zsh stow -t "$$HOME" -D polybar stow -t "$$HOME" -D sxhkd + stow -t "$$HOME" -D tmux stow -t "$$HOME" -D zsh alacritty: @@ -62,12 +63,16 @@ sxhkd: @printf "$(YELLOW)--- sxhkd ----------------------------------------------\n$(RESET)" stow -t "$$HOME" sxhkd +tmux: + @printf "$(YELLOW)--- tmux -----------------------------------------------\n$(RESET)" + stow -t "$$HOME" tmux + zsh: @printf "$(YELLOW)--- zsh ------------------------------------------------\n$(RESET)" stow -t "$$HOME" zsh nuke: @printf "$(RED)--- nuking existing files ------------------------------\n$(RESET)" - rm -rf ~/.config/{alacritty,bspwm,dunst,polybar,sxhkd} ~/.emacs.d ~/.spacemacs ~/.oh-my-zsh ~/.zshrc + rm -rf ~/.config/{alacritty,bspwm,dunst,polybar,sxhkd} ~/.emacs.d ~/.spacemacs ~/.oh-my-zsh ~/.zshrc ~/.tmux.conf -.PHONY: alacritty bspwm dunst emacs oh-my-zsh polybar sxhkd zsh clean install nuke Windows Linux Other +.PHONY: alacritty bspwm dunst emacs oh-my-zsh polybar sxhkd tmux zsh clean install nuke Windows Linux Other diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..336925f --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1 @@ +set -g default-terminal "screen-256color"