Modified .zshrc, added code to auto open tmux and alias for python

This commit is contained in:
Kyren223
2024-06-23 11:00:43 +03:00
parent 21c91a621f
commit 9714e2ef49

7
.zshrc
View File

@@ -104,4 +104,11 @@ export FZF_DEFAULT_OPTS=" \
alias ls='ls --color'
alias c='clear'
alias vim='nvim'
alias python='python3'
# Open tmux if it's not open
if [ -z "$TMUX" ]; then
tmux
fi