-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
36 lines (30 loc) · 1.06 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
# ______ ___ __ __
# / ____/__ / (_) __ / //_/_ ____ ______
# / /_ / _ \/ / / |/_/ / ,< / / / / / / / __ \
# / __/ / __/ / /> < / /| / /_/ / /_/ / / / /
# /_/ \___/_/_/_/|_|____/_/ |_\__, /\__,_/_/ /_/
# /_____/ /____/
# My Zsh Config [OMZ]
# Print Greet
# figlet -cf slant Felix_Kyun | lolcat
zfetch
#tput cup $(($LINES - 2)) 0
#
# enable p10k Instant Prompt
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
# Enable OMZ
export ZSH="$HOME/.oh-my-zsh"
#Set Theme
ZSH_THEME="powerlevel10k/powerlevel10k"
# Enable Plugins
plugins=(git zsh-autosuggestions zsh-syntax-highlighting )
# Some Other Settings
source $ZSH/oh-my-zsh.sh
path+=('/home/felix/.local/bin')
# Enable Other Configs
. ~/.zsh_aliases
. ~/.zsh_vars
# Finally Enable p10k
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh