-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc##c.fumi
70 lines (55 loc) · 1.96 KB
/
.zshrc##c.fumi
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
export PATH="$HOME/Library/Python/3.8/bin:"$PATH
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
alias ibrew='arch -x86_64 /usr/local/bin/brew'
fpath=(/opt/homebrew/share/zsh/site-functions $fpath)
HISTFILE=~/.zsh_history
HISTSIZE=1000
SAVEHIST=1000
setopt autocd extendedglob
unsetopt beep
bindkey -v
# The following lines were added by compinstall
zstyle :compinstall filename '/Users/[email protected]/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
source $(brew --prefix)/share/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle pass
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
antigen bundle esc/conda-zsh-completion
antigen theme refined
antigen apply
alias vi="vim"
alias selp="$HOME/projects/selp/env/bin/selp"
EDITOR=vim
# make run-help more useful
unalias run-help
autoload -U run-help
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/[email protected]/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/[email protected]/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/[email protected]/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/[email protected]/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
if [ -f "/Users/[email protected]/miniconda3/etc/profile.d/mamba.sh" ]; then
. "/Users/[email protected]/miniconda3/etc/profile.d/mamba.sh"
fi
# <<< conda initialize <<<
# nvm (node version manager)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
bindkey "^Q" fzf-cd-widget