-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
32 lines (31 loc) · 905 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
29
30
31
32
eval "$(starship init zsh)"
# Export
export PATH="$HOME/.jenv/bin:${HOME}/.cargo/bin:$PATH"
export VCPKG_ROOT="/Users/jenoh/vcpkg"
export ZSH="$HOME/.oh-my-zsh"
export PSQL_EDITOR=nvim
plugins=(
direnv
git
# ssh-agent
keychain
sudo
zsh-autosuggestions
zsh-syntax-highlighting
)
source $ZSH/oh-my-zsh.sh
# Alias
alias php='/usr/local/Cellar/[email protected]/7.4.27/bin/php'
alias ls='exa'
alias l='exa -lbF --git'
alias ll='exa -lbGF --git'
alias llm='exa -lbGd --git --sort=modified'
alias la='exa -lbhHigUmuSa --time-style=long-iso --git --color-scale'
alias lx='exa -lbhHigUmuSa@ --time-style=long-iso --git --color-scale'
alias lS='exa -1'
alias lt='exa --tree --level=2'
alias get_idf='. $HOME/esp/esp-idf/export.sh'
alias cdb='cd ~/work/billing-api'
alias cca='cd ~/work/ccadmin'
alias dto='cd ~/work/clevercloud-scala-dto'
export PATH=$HOME/.local/bin:$PATH