-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
78 lines (55 loc) · 2.29 KB
/
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
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
71
72
73
74
75
76
77
78
# 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
source $HOME/dotfiles/envs
eval "$(/opt/homebrew/bin/brew shellenv)"
# Disable oh-my-zsh theme
ZSH_THEME="powerlevel10k/powerlevel10k"
# Trying to disable the permission prompt
ZSH_DISABLE_COMPFIX="true"
# Uncomment the following line to use case-sensitive completion.
CASE_SENSITIVE="false"
# Always automatically upgrade.
zstyle ':omz:update' mode auto
# How often to auto-update (in days).
zstyle ':omz:update' frequency 7
# Display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
# This makes repository status check for large repositories much faster.
DISABLE_UNTRACKED_FILES_DIRTY="true"
# not work well with starship
VI_MODE_SET_CURSOR="false"
plugins=(
poetry
zsh-autosuggestions
zsh-syntax-highlighting # must be the last
)
source $ZSH/oh-my-zsh.sh
source $HOME/dotfiles/paths
source $HOME/dotfiles/aliases
source $HOME/dotfiles/fzf/fzf-git.sh
source $HOME/.cargo/env
test -e "$HOME/.iterm2_shell_integration.zsh" && source "$HOME/.iterm2_shell_integration.zsh"
[[ -s "/Users/sang/.gvm/scripts/gvm" ]] && source "/Users/sang/.gvm/scripts/gvm"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH
autoload -Uz compinit
compinit
fi
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# TODO: Should I use this dotfiles folder?
[[ ! -f ~/dotfiles/scripts/yy.zsh ]] || source ~/dotfiles/scripts/yy.zsh
autoload -U +X bashcompinit && bashcompinit
complete -o nospace -C /opt/homebrew/bin/bit bit
export NVM_DIR="$HOME/.config/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
source ~/dotfiles/scripts/nvm.zsh
# tabtab source for packages
# uninstall by removing these lines
[[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true
. "$HOME/.cargo/env"