mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
13 lines
311 B
Bash
Executable File
13 lines
311 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
load_plugins() {
|
|
setopt +o nomatch
|
|
for plugin in ~/.local/share/zsh/plugins/**/*.plugin.zsh; do
|
|
[[ -e "$plugin" && "$plugin" != *.disabled.zsh ]] && source "$plugin"
|
|
done
|
|
source ~/.local/share/zsh/plugins/powerlevel10k/powerlevel10k.zsh-theme
|
|
setopt -o nomatch
|
|
}
|
|
|
|
load_plugins
|