tide/functions/_tide_item_rust.fish

7 lines
177 B
Fish
Raw Normal View History

2020-08-19 20:35:04 +03:00
function _tide_item_rust
if test -e Cargo.toml
2020-09-08 18:13:15 +03:00
set_color $tide_rust_color
printf '%s' $tide_rust_icon' ' (rustc --version | string split ' ')[2]
2020-08-19 20:35:04 +03:00
end
2021-03-02 20:46:40 +03:00
end