-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
40 lines (33 loc) · 831 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
39
40
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/kieselnb/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
zstyle ':completion:*' menu select
autoload -Uz promptinit
promptinit
prompt redhat
alias yeet='yay -Rsn'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
eval $(thefuck --alias)
function _whatis() {
case $1 in
"life")
echo "worth living"
;;
"love")
echo "baby don't hurt me"
;;
*)
whatis $@
esac
}
alias whatis='_whatis'
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh