-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
35 lines (29 loc) · 969 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
33
34
35
export TERM=xterm-256color
# Personal aliases and configurations
# Include other personal configurations
# Dotfile Management
unsetopt NO_CORRECT
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/robin/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/robin/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/robin/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/robin/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
source /home/robin/dotfiles/accursedzsh/.zshrc
source ~/.zsh-alias-tips/alias-tips.plugin.zsh
export PATH=$PATH:/usr/local/go/bin
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
# bun completions
[ -s "/home/robin/.bun/_bun" ] && source "/home/robin/.bun/_bun"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"