tide/functions/_tide_item_nvm.fish

7 lines
191 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
2020-09-07 04:10:10 +03:00
end