1
0
Fork 0
mirror of synced 2024-12-04 14:45:38 -05:00

fixup! added support for configuration files in the following locations: - ~/.tmux.conf and ~/.tmux.conf.local - $XDG_CONFIG_HOME/tmux/tmux.conf and $XDG_CONFIG_HOME/tmux/tmux.conf.local - ~/.config/tmux/tmux.conf and ~/.config/tmux/tmux.conf.local

This commit is contained in:
Gregory Pakosz 2023-01-11 09:59:15 +01:00
parent 6eeb02c72d
commit db08136783

View file

@ -173,6 +173,8 @@ run 'cut -c3- "#{TMUX_CONF}" | sh -s _apply_configuration'
# fi
# fi
#
# _uname_s=$(uname -s)
#
# [ -z "$TMUX" ] && exit 666
# TMUX_SOCKET=$(printf '%s' "$TMUX" | cut -d, -f1)
#
@ -185,11 +187,9 @@ run 'cut -c3- "#{TMUX_CONF}" | sh -s _apply_configuration'
# fi
#
# tmux() {
# "$TMUX_EXECUTABLE" -S "$TMUX_SOCKET" "$@"
# "$TMUX_EXECUTABLE" ${TMUX_SOCKER:+-S "$TMUX_SOCKET"} "$@"
# }
#
# _uname_s=$(uname -s)
#
# _tmux_version=$(tmux -V | awk '{gsub(/[^0-9.]/, "", $2); print ($2+0) * 100}')
#
# _is_true() {