Convert tmux from stow to chezmoi

main
Buddy Sandidge 2 years ago
parent 5dd202512d
commit 398158e747

@ -1,7 +1,6 @@
/hellotech/ /hellotech/
/install-scripts/ /install-scripts/
/old-scripts/ /old-scripts/
/tmux/
/vim-fancy/ /vim-fancy/
/vim/ /vim/
/README.md /README.md

@ -1,3 +1,4 @@
{{ if and (lookPath "tmux") (eq .chezmoi.os "darwin") -}}
#!/usr/bin/env bash #!/usr/bin/env bash
if [ "$(uname -s)" == "Darwin" ]; then if [ "$(uname -s)" == "Darwin" ]; then
@ -6,3 +7,4 @@ fi
tmux set default-terminal "tmux-256color" tmux set default-terminal "tmux-256color"
tmux set terminal-overrides ",xterm-256color:Tc" tmux set terminal-overrides ",xterm-256color:Tc"
{{- end }}

@ -1,3 +1,4 @@
{{ if lookPath "tmux" -}}
################################################################################ ################################################################################
# Base configuration # Base configuration
################################################################################ ################################################################################
@ -32,7 +33,9 @@ set-option -g mouse on
################################################################################ ################################################################################
# Colors # Colors
################################################################################ ################################################################################
{{ if eq .chezmoi.os "darwin" -}}
run $XDG_CONFIG_HOME/tmux/plugins/macos-color-workaround run $XDG_CONFIG_HOME/tmux/plugins/macos-color-workaround
{{ end }}
set -g status-fg white set -g status-fg white
set -g status-bg black set -g status-bg black
@ -85,3 +88,4 @@ set -g @prefix_highlight_show_sync_mode 'on'
set -g @prefix_highlight_sync_mode_attr 'fg=black,bg=green' # default is 'fg=default,bg=yellow' set -g @prefix_highlight_sync_mode_attr 'fg=black,bg=green' # default is 'fg=default,bg=yellow'
run $XDG_CONFIG_HOME/tmux/plugins/tpm/tpm run $XDG_CONFIG_HOME/tmux/plugins/tpm/tpm
{{- end }}

@ -1,4 +1,6 @@
{{ if lookPath "tmux" -}}
if [ "$TMUX" ]; then if [ "$TMUX" ]; then
# TERM=tmux-256color does not work as expected on osx # TERM=tmux-256color does not work as expected on osx
export TERM=screen-256color export TERM=screen-256color
fi fi
{{- end }}

@ -1 +0,0 @@
Subproject commit 33fa65fbfb72ba6dd106c21bf5ee6cc353ecdbb6
Loading…
Cancel
Save