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
|
# zplug
source ~/.zplug/init.zsh
# oh my zsh stuff
zplug "plugins/archlinux", from:oh-my-zsh
zplug "plugins/command-not-found", from:oh-my-zsh
zplug "plugins/docker", from:oh-my-zsh
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/git-extras", from:oh-my-zsh
zplug "plugins/pip", from:oh-my-zsh
zplug "plugins/rsync", from:oh-my-zsh
zplug "plugins/sublime", from:oh-my-zsh
zplug "plugins/systemd", from:oh-my-zsh
zplug "plugins/taskwarrior", from:oh-my-zsh
zplug "plugins/thefuck", from:oh-my-zsh
zplug "plugins/tmux", from:oh-my-zsh
zplug "plugins/virtualenvwrapper", from:oh-my-zsh
zplug "plugins/zsh-navigation-tools", from:oh-my-zsh
zplug "plugins/colored-man-pages", from:oh-my-zsh
zplug "zsh-users/zsh-syntax-highlighting"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-completions"
zplug "zsh-users/zsh-history-substring-search"
# THEME
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
# POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="↳ "
POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
POWERLEVEL9K_MODE='awesome-fontconfig'
POWERLEVEL9K_SHORTEN_DIR_LENGTH=3
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon context virtualenv dir dir_writable vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time root_indicator background_jobs history time)
# zplug theme https://gist.github.com/pstruschka/c05686e6cf10e12471a3104e42e6366b.git agnoster_custom
#[ "$TERM" = "linux" ] || zplug romkatv/powerlevel10k, use:powerlevel10k.zsh-theme
case "$TERM" in
"linux") ;;
"dumb") export PS1="> ";;
*) zplug romkatv/powerlevel10k, use:powerlevel10k.zsh-theme
esac
if ! zplug check; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
zplug load
fpath+=~/.zfunc
autoload -Uz compinit
compinit
[ -n $ZSH ] && [ -e $ZSH/oh-my-zsh.sh ] && \
source $ZSH/oh-my-zsh.sh
if [ "$TERM" = "linux" ]; then
_SEDCMD='s/.*\*color\([0-9]\{1,\}\).*#\([0-9a-fA-F]\{6\}\).*/\1 \2/p'
for i in $(sed -n "$_SEDCMD" $HOME/.Xresources | awk '$1 < 16 {printf "\\e]P%X%s", $1, $2}'); do
echo -en "$i"
done
clear
fi
if type "kitty" > /dev/null; then
# Completion for kitty
kitty + complete setup zsh | source /dev/stdin
alias kdiff="kitty +kitten diff"
alias kicat="kitty +kitten icat"
alias kunicode="kitty +kitten unicode_input"
alias kpanel="kitty +kitten panel"
alias khints="kitty +kitten hints"
alias kclip="kitty +kitten clipboard"
fi
if type "exa" > /dev/null; then
alias ls=exa
fi
if type "thefuck" > /dev/null; then
eval $(thefuck --alias)
fi
if type "fasd" > /dev/null; then
eval "$(fasd --init auto)"
fi
# python virtualenvwrapper
export WORKON_HOME=~/.virtualenvs
[[ -e /usr/bin/virtualenvwrapper_lazy.sh ]] && \
source /usr/bin/virtualenvwrapper_lazy.sh
alias ec="emacsclient -c"
[[ -e /usr/share/doc/pkgfile/command-not-found.zsh ]] && \
source /usr/share/doc/pkgfile/command-not-found.zsh
|