tide/functions/_tide_item_nvm.fish

6 lines
215 B
Fish
Raw Normal View History

2020-09-06 21:23:47 +03:00
function _tide_item_nvm
2020-12-26 03:32:03 +03:00
functions --query nvm && set -l nvmCurrent (nvm current) && if test "$nvmCurrent" != system
set_color $tide_nvm_color
printf '%s' $tide_nvm_icon' ' $nvmCurrent
2020-09-06 21:23:47 +03:00
end
2020-09-07 04:10:10 +03:00
end