mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Updated zshrc template for mac
This commit is contained in:
parent
7728107eba
commit
506ddcf190
1 changed files with 6 additions and 1 deletions
|
|
@ -36,9 +36,14 @@ DISABLE_VENV_CD="1"
|
|||
plugins=(git postgres tmux python vim-override virtualenvwrapper)
|
||||
|
||||
# User configuration
|
||||
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||
if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi
|
||||
if [ -e /usr/local/bin ]; then export PATH="/usr/local/bin:$PATH"; fi
|
||||
export EDITOR='vim'
|
||||
|
||||
# Language configuration
|
||||
if [ -z "$LC_ALL" ]; then export LC_ALL=en_US.UTF-8; fi
|
||||
if [ -z "$LANG" ]; then export LANG=en_US.UTF-8; fi
|
||||
|
||||
# Aliases
|
||||
alias ta='tmux attach -t'
|
||||
alias tl='tmux list-session'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue