mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 17:00:07 +00:00
7 lines
310 B
Bash
7 lines
310 B
Bash
print ${(%):-'%F{yellow}The `cargo` plugin is deprecated and has been moved to the `rust` plugin.'}
|
|
print ${(%):-'Please update your .zshrc to use the `%Brust%b` plugin instead.%f'}
|
|
|
|
(( ${fpath[(Ie)$ZSH/plugins/rust]} )) || {
|
|
fpath=("$ZSH/plugins/rust" $fpath)
|
|
source "$ZSH/plugins/rust/rust.plugin.zsh"
|
|
}
|