1 parent 561b17e commit 8b6bc7bCopy full SHA for 8b6bc7b
1 file changed
zsh/.zshrc
@@ -108,7 +108,7 @@ antigen use oh-my-zsh
108
# oh-my-zsh included bundles
109
antigen bundle rust
110
antigen bundle colored-man-pages
111
-antigen bundle common-aliases
+#antigen bundle common-aliases
112
antigen bundle git
113
antigen bundle wd
114
@@ -234,7 +234,9 @@ alias show-colors='for i in {0..255}; do printf "\x1b[38;5;${i}mcolor%-5i\x1b[0m
234
alias emoj="uvx emoji-fzf preview | fzf --preview 'emoji-fzf get --name {1}' | cut -d \" \" -f 1 | emoji-fzf get | xclip"
235
236
# no safe cp for me
237
-unalias rm cp mv
+(( $+aliases[rm] )) && unalias rm
238
+(( $+aliases[cp] )) && unalias cp
239
+(( $+aliases[mv] )) && unalias mv
240
241
# pipe data to gnuplot
242
alias gplot='gnuplot -e "set terminal dumb; plot '"'"'-'"'"' notitle"'
0 commit comments