-
Notifications
You must be signed in to change notification settings - Fork 3
/
dot_zshrc.tmpl
45 lines (37 loc) · 1.36 KB
/
dot_zshrc.tmpl
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
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
{{ if eq .use_conda "yes" -}}
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('{{ .conda_path }}bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "{{ .conda_path }}etc/profile.d/conda.sh" ]; then
. "{{ .conda_path }}etc/profile.d/conda.sh"
else
export PATH="{{ .conda_path }}bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
{{ end -}}
# Keep 10,000,000 lines of history within the shell and save it to ~/.zsh_history:
HISTSIZE=10000000
SAVEHIST=10000000
HISTFILE=~/.zsh_history
# Platform specific customizations
source ~/.platformrc
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
source ~/antigen.zsh
antigen init ~/.antigenrc
# Aliases
alias cat=ccat
source /usr/share/nvm/init-nvm.sh
eval "$(atuin init zsh)"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh