-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc.backup
42 lines (31 loc) · 1.15 KB
/
.zshrc.backup
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
# Path to your oh-my-zsh installation.
if [[ "$(uname)" == "Darwin" ]]; then
export ZSH="/Users/tim/.oh-my-zsh"
export PATH="$HOME/.bin:$PATH"
elif [[ "$(uname)" == "Linux" ]]; then
export ZSH="/home/tim/.oh-my-zsh"
PROMPT="$fg[cyan]%}$USER@%{$fg[blue]%}%m ${PROMPT}"
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
exec startx
fi
else
echo "Unknown OS, cannot locate ZSH"
fi
# ZSH
ZSH_THEME="robbyrussell"
HIST_STAMPS="yyyy-mm-dd"
plugins=(git zsh-syntax-highlighting zsh-autosuggestions fzf-zsh-plugin)
source $ZSH/oh-my-zsh.sh
unset MAILCHECK
export EDITOR=hx
source ~/.config/aliasrc
source ~/.config/functionrc
source $XDG_CONFIG_HOME/zsh/.secret
bindkey -v
eval "$(starship init zsh)"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
task ready
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/tim/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/tim/Downloads/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/tim/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/tim/Downloads/google-cloud-sdk/completion.zsh.inc'; fi