tide/functions/_tide_item_nvm.fish

8 lines
192 B
Fish
Raw Normal View History

2020-09-06 21:23:47 +03:00
function _tide_item_nvm
2021-02-17 07:46:48 +03:00
set -l nvmCurrent (nvm current)
if test "$nvmCurrent" != system
2020-12-26 03:32:03 +03:00
set_color $tide_nvm_color
printf '%s' $tide_nvm_icon' ' $nvmCurrent
2020-09-06 21:23:47 +03:00
end
2021-03-02 20:46:40 +03:00
end