You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/zshrc.local

19 lines
310 B

alias dc=docker-compose
# autostart tmux
if [ "$TMUX" = "" ]; then
export TERM=xterm-256color
if which tmux 2>&1 >/dev/null; then
tmux attach || tmux new-session
fi
else
export TERM=screen-256color
fi
11 years ago
if which xset 2>&1 >/dev/null; then
xset -b
fi
10 years ago
# deactivate ctrl+s
stty -ixon