1
0
dotfiles/.config/zsh/rc.zsh
Konstantin Demin 47b2170058
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
zsh: update
2024-02-23 21:46:04 +03:00

29 lines
380 B
Bash

#!/bin/zsh
typeset -Ua zshu_modules
zshu_modules+=(
complete
complist
computil
datetime
langinfo
main
mathfunc
parameter
stat
system
terminfo
zle
zutil
)
for i ( ${zshu_modules} ) ; do
case "$i" in
*/* ) ;;
* ) i="zsh/$i" ;;
esac
zmodload -i "$i"
done
unset i zshu_modules
autoload -Uz +X colors && colors