forked from abbasaa/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
28 lines (24 loc) · 870 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
source ~/zsh-git-prompt/zshrc.sh
# %n $USERNAME
# %m The hostname up to the first '.'
# %. current directory
# %% Character '%'
# Load version control information
autoload -Uz vcs_info
precmd() { vcs_info }
# Format the vcs_info_msg_0_ variable
zstyle ':vcs_info:git:*' formats 'on branch %b'
# Set up prompt (with git branch name)
setopt PROMPT_SUBST
# PROMPT='%B%m%~%b$(git_super_status) %# '
PROMPT="%n @ %m in %~ $(git_super_status) ${vcs_info_msg_0_}"$'\n'"$ "
alias vim="nvim"
export PATH="/usr/local/opt/openjdk/bin:$PATH"
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
alias pip3.8=/usr/local/opt/[email protected]/bin/pip3
alias python3.8=/usr/local/opt/[email protected]/bin/python3.8
alias caen='ssh [email protected]'
alias fcaen='sftp [email protected]'
alias 89='cd ~/school/sem7/89'
alias 70='cd ~/school/sem7/70'
alias dt='cd ~/Desktop'