-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc##c.dx
50 lines (42 loc) · 1.25 KB
/
.zshrc##c.dx
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
# 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/paavo/.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 /usr/share/zsh/share/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-autosuggestions
antigen theme robbyrussell
antigen apply
alias vi="vim"
EDITOR=vim
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/paavo/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/paavo/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/paavo/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/paavo/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<