-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc##c.futu-mbp
58 lines (47 loc) · 1.58 KB
/
.zshrc##c.futu-mbp
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
export PATH="$HOME/Library/Python/3.8/bin:"$PATH
# The following lines were added by compinstall
zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
zstyle ':completion:*' completions 1
zstyle ':completion:*' glob 1
zstyle ':completion:*' max-errors 3
zstyle ':completion:*' prompt 'correct> '
zstyle ':completion:*' substitute 1
zstyle :compinstall filename $HOME/.zshrc
autoload -Uz compinit promptinit
compinit
#promptinit
#prompt walters
# End of lines added by compinstall
HISTFILE=~/.zsh_history
HISTSIZE=1000
SAVEHIST=1000
setopt autocd extendedglob
unsetopt beep
bindkey -v
source $(brew --prefix)/share/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle esc/conda-zsh-completion
antigen theme refined
antigen apply
alias vi="vim"
EDITOR=vim
# >>> 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 <<<