-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.zshrc
64 lines (51 loc) · 2.06 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
export GPG_TTY="$(tty)"
export EDITOR="code -w"
# envs
export DOTFILES="$HOME/.dotfiles"
export ANDROID_SDK="/Users/micha/Library/Android/sdk"
export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib"
export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig"
export LC_ALL="en_US.UTF-8"
export LANG="en_US.UTF-8"
export GPG_TTY="$(tty)"
# path
export PATH="/opt/homebrew/bin:$PATH"
export PATH="/opt/homebrew/sbin:$PATH"
export PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
export PATH="$HOME/.node/bin:$PATH"
export PATH="node_modules/.bin:vendor/bin:$PATH"
export PATH="$HOME/.composer/vendor/bin:$PATH"
export PATH="$HOME/Library/Python/3.11/bin:${PATH}"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="${HOME}/multiversx-sdk:${PATH}"
export ANDROID_HOME="$HOME/Library/Android/sdk"
export PATH="$PATH:$ANDROID_HOME/emulator"
export PATH="$PATH:$ANDROID_HOME/tools"
export PATH="$PATH:$ANDROID_HOME/tools/bin"
export PATH="$PATH:$ANDROID_HOME/platform-tools"
# aliases
alias gl="git log --pretty=format:\"%h %s\" --graph"
alias copyssh="pbcopy < \"$HOME/.ssh/id_ed25519.pub\""
alias reload="source \"$HOME/.zshrc\""
alias todots="cd \"$DOTFILES\""
alias tossh="cd \"$HOME/.ssh\""
alias tolib="cd \"$HOME/Library\""
alias tocode="cd \"$HOME/Code\""
alias a="php artisan"
alias pest="./vendor/bin/pest -p"
alias vapor="./vendor/bin/vapor"
alias py="python3.11"
alias commit='git commit -m'
alias connect_server="ssh [email protected]"
# Herd injected PHP 8.3 configuration.
export HERD_PHP_83_INI_SCAN_DIR="/Users/michavie/Library/Application Support/Herd/config/php/83/"
# Herd injected PHP binary.
export PATH="/Users/michavie/Library/Application Support/Herd/bin/":$PATH
# Created by `pipx` on 2024-06-16 13:49:29
export PATH="$PATH:/Users/michavie/.local/bin"
eval "$(rbenv init -)"
# Herd injected PHP 8.4 configuration.
export HERD_PHP_84_INI_SCAN_DIR="/Users/michavie/Library/Application Support/Herd/config/php/84/"
export PATH="$PATH:/Users/michavie/.space"