-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
38 lines (31 loc) · 912 Bytes
/
.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
ENABLE_CORRECTION="true"
source "$HOME/dotfiles/zsh/path.zsh"
source "$HOME/dotfiles/zsh/.p10k.zsh"
source "$HOME/dotfiles/zsh/alias.zsh"
source "$HOME/dotfiles/zsh/completion.zsh"
source "$HOME/dotfiles/zsh/directory.zsh"
source "$HOME/dotfiles/zsh/history.zsh"
source "$HOME/dotfiles/zsh/lang.zsh"
source "$HOME/dotfiles/zsh/plugin.zsh"
# Settings for fzf
export FZF_DEFAULT_COMMAND="rg --files --hidden --smart-case --glob='!.git/*'"
# display
setopt print_exit_value
# no peep
setopt no_beep
setopt no_hist_beep
setopt no_list_beep
# warning before delete
setopt rm_star_wait
# ctags
# disable no matches found error
setopt nonomatch
#####################################
# to check starting time of zsh,
# uncomment following commands.
# (please check also .zshenv)
#####################################
# if (which zprof > /dev/null) ;then
# zprof | less
# fi
####################################