mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-23 17:02:24 +03:00
9 lines
248 B
Fish
9 lines
248 B
Fish
function _tide_item_nvm
|
|
if functions --query nvm
|
|
set -l nvmCurrent (nvm current)
|
|
if test "$nvmCurrent" != system
|
|
set_color $tide_nvm_color
|
|
printf '%s' $tide_nvm_icon' ' $nvmCurrent
|
|
end
|
|
end
|
|
end |