forked from alfunx/.dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
194 lines (150 loc) · 4.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# Debug
#zmodload zsh/zprof
##########################################################################################
###########
# ZSHRC #
###########
export ZSH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/zsh"
export ZSH="$HOME/.oh-my-zsh"
export ZSH_CUSTOM="$ZSH_CONFIG/custom"
if [[ "$TERM" != 'linux' ]]; then
ZSH_THEME='gruvbox-dark'
fi
#CASE_SENSITIVE="true"
#HYPHEN_INSENSITIVE="true"
#DISABLE_AUTO_UPDATE="true"
UPDATE_ZSH_DAYS=7
#DISABLE_LS_COLORS="true"
#DISABLE_AUTO_TITLE="true"
#ENABLE_CORRECTION="true"
#COMPLETION_WAITING_DOTS="true"
#DISABLE_UNTRACKED_FILES_DIRTY="true"
#HIST_STAMPS="yyyy-mm-dd"
#############
# PROFILE #
#############
[[ -f "$HOME/.zprofile" ]] \
&& source "$HOME/.zprofile"
###############
# DIRCOLORS #
###############
# eval dircolors
[[ -f "$HOME/.dircolors" ]] \
&& eval "$(dircolors "$HOME/.dircolors")"
#####################
# PLUGIN SETTINGS #
#####################
# bgnotify settings
bgnotify_threshold=2 ## set your own notification threshold
bgnotify_formatted() {
## $1=exit_status, $2=command, $3=elapsed_time
[[ $1 -eq 0 ]] && title="Zsh" || title="Zsh (fail)"
bgnotify "$title (${3}s)" "$2"
}
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
zsh-syntax-highlighting
zsh-completions
zsh-autosuggestions
command-not-found
bgnotify
)
# # Native plugins
# plugins=(
# command-not-found
# colorize
# bgnotify
# )
# source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
# Remove plugins if in tty
[[ "$TERM" = 'linux' ]] \
&& plugins=("${(@)plugins:#zsh-autosuggestions}")
# Completions
[[ -f "$ZSH_CONFIG/completion.zsh" ]] \
&& source "$ZSH_CONFIG/completion.zsh"
# Oh-My-Zsh
[[ -f "$ZSH/oh-my-zsh.sh" ]] \
&& source "$ZSH/oh-my-zsh.sh"
########################
# USER CONFIGURATION #
########################
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="$HOME/.ssh/rsa_id"
############
# CUSTOM #
############
# Zsh options
unsetopt AUTO_CD
setopt INTERACTIVE_COMMENTS
setopt PROMPT_SUBST
setopt HIST_IGNORE_SPACE
setopt HIST_IGNORE_DUPS
# No scrolllock
stty -ixon
# Highlighting
[[ -f "$ZSH_CONFIG/highlight.zsh" ]] \
&& source "$ZSH_CONFIG/highlight.zsh"
# Aliases
[[ -f "$ZSH_CONFIG/alias.zsh" ]] \
&& source "$ZSH_CONFIG/alias.zsh"
# FZF
[[ -f "$ZSH_CONFIG/fzf.zsh" ]] \
&& source "$ZSH_CONFIG/fzf.zsh"
# Vim mode
#[[ -f "$ZSH_CONFIG/vim.zsh" ]] \
# && source "$ZSH_CONFIG/vim.zsh"
# Gruvbox colors fix
[[ -f "$HOME/.bin/fix-gruvbox-palette" ]] \
&& [[ "$TERM" != 'xterm-kitty' ]] \
&& [[ "$TERM" != 'tmux-256color' ]] \
&& source "$HOME/.bin/fix-gruvbox-palette"
# TMUX
local main_attached="$(tmux list-sessions -F '#S #{session_attached}' \
2>/dev/null \
| sed -n 's/^main[[:space:]]//p')"
if [[ "$main_attached" -le '0' ]] && [[ "$TERM" != 'linux' ]]; then
tmux new -A -s main >/dev/null 2>&1
exit
fi
# Alternative prompt
if [[ "$TERM" == "linux" ]] || [[ ! -d "$ZSH_CONFIG" ]]; then
PROMPT='[%F{167}%B%n%b%f@%M %~]'
PROMPT+='$(git_prompt_info)'
PROMPT+=' %(?.%F{108}.%F{167})%B%(!.#.$)%b%f '
ZSH_THEME_GIT_PROMPT_PREFIX=" [%F{214}%B"
ZSH_THEME_GIT_PROMPT_SUFFIX="%b%f]"
ZSH_THEME_GIT_PROMPT_DIRTY="%F{167}%B*%b%f"
ZSH_THEME_GIT_PROMPT_CLEAN=""
fi
# Empty line
function echo_blank() {
echo
}
precmd_functions+=echo_blank
# preexec_functions+=echo_blank
# Directly source prompt
#source "$ZSH_CUSTOM/themes/gruvbox-dark.zsh-theme"
# Kitty completion
source <(kitty + complete setup zsh)
##########################################################################################
## bonsai
if [ $(tput lines) -gt 40 ] && [ $(tput cols) -gt 200 ]; then
cbonsai -p
fi
# Debug
#zprof