10 lines
255 B
Bash
10 lines
255 B
Bash
# .zshrc by TheK4n
|
|
# https://github.com/TheK4n/dotfiles
|
|
|
|
if command -v tmux &>/dev/null && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ] && [ "$(tty)" != "/dev/tty3" ]; then
|
|
exec tmux
|
|
fi
|
|
|
|
if [ -f "$ZDOTDIR/sourcer" ]; then
|
|
source "$ZDOTDIR/sourcer"
|
|
fi |