-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zshrc
50 lines (35 loc) · 1.02 KB
/
dot_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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# environment variables
export EDITOR=vim
export HISTSIZE=10000
export SAVEHIST=10000
export ANDROID_HOME=$HOME/Library/Android/sdk
path+=($ANDROID_HOME/emulator)
path+=($ANDROID_HOME/platform-tools)
export GOPATH=$HOME/go
path+=($GOPATH/bin)
export BUNPATH=$HOME/.bun
path+=($BUNPATH/bin)
path+=/opt/homebrew/opt/protobuf@3/bin
path+=/opt/homebrew/opt/libpq/bin
# eval
eval "$(/opt/homebrew/bin/brew shellenv)"
eval "$(sheldon source)"
eval "$(/opt/homebrew/bin/mise activate zsh)"
eval "$(zoxide init zsh)"
# aliases
alias tis='tig status'
alias dc='docker compose'
alias gcmf='git commit -m "feat:'
alias gcmfi='git commit -m "fix:'
alias gcmd='git commit -m "docs:'
alias gcms='git commit -m "style:'
alias gcmr='git commit -m "refactor:'
alias gcmp='git commit -m "perf:'
alias gcmt='git commit -m "test:'
alias gcmb='git commit -m "build:'
alias gcmci='git commit -m "ci:'
alias gcmc='git commit -m "chore:'
alias gcmrv='git commit -m "revert:'
alias cm='chezmoi'
alias brwe="brew"
alias bbd="brew bundle dump --global --force"