-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
executable file
·110 lines (88 loc) · 2.99 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/zsh
# Due to how Mac OS handles the path, if we put this in .zshenv, it gets prefixed with the stuff from /usr/libexec/path_helper
llvm=/usr/local/opt/llvm # $(brew --prefix llvm)
brew=/opt/homebrew # $(brew --prefix)
pyroot=$($brew/bin/brew --prefix [email protected])
path=(
$pyroot/bin
$pyroot/libexec/bin
${HOME}/.cargo/bin
${HOME}/.nimble/bin
${HOME}/.local/bin # Python pip
${HOME}/.deno/bin
$llvm/bin
$brew/bin
$brew/sbin
/usr/local/bin
/usr/local/sbin # usr/local/opt/python/libexec/bin/ # Python installed by Homebrew
$path
)
typeset -U path # force path to only have unique values
export PATH
alias chrome="/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
alias firefox="/Applications/Firefox.app/Contents/MacOS/firefox"
alias edge="/Applications/Microsoft\ Edge.app/Contents/MacOS/Microsoft\ Edge"
alias servo="/Applications/Servo.app/Contents/MacOS/servo"
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
export DOTNET_CLI_TELEMETRY_OPTOUT=1
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="robbyrussell"
DISABLE_UPDATE_PROMPT=true
UPDATE_ZSH_DAYS=7
ENABLE_CORRECTION="true"
# just correct commands, not arguments
unsetopt CORRECT_ALL
# with spelling correction, assume dvorak kb
setopt DVORAK
COMPLETION_WAITING_DOTS="true"
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git poetry)
source $ZSH/oh-my-zsh.sh
unsetopt share_history
if [[ $TERM = dumb ]]; then
unset zle_bracketed_paste
fi
autoload -U +X compinit && compinit
autoload -U +X bashcompinit && bashcompinit
# Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='nano'
else
export EDITOR='code -w'
fi
export HOMEBREW_NO_ANALYTICS=1
export HOMEBREW_DEVELOPER=1
export HOMEBREW_EDITOR=$EDITOR
export HOMEBREW_EVAL_ALL=1
if (( $+commands[pyenv] )); then
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
if (( $+commands[thefuck] )); then
eval "$(thefuck --alias)"
fi
if (( $+commands[direnv] )); then
eval "$(direnv hook zsh)"
fi
if (( $+commands[register-python-argcomplete] )); then
eval "$(register-python-argcomplete ros2 colcon)"
fi
if (( !$+commands[open] )); then
alias open=xdg-open
fi
# pnpm
export PNPM_HOME="/Users/dan/Library/pnpm"
export PATH="$PNPM_HOME:$PATH"
# pnpm end