mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-30 15:15:19 +03:00
14 lines
331 B
Fish
14 lines
331 B
Fish
function lean_right_prompt
|
|
echo -n " "
|
|
|
|
for module in lean_{$lean_right_prompt_modules}
|
|
if test -n "$$module"
|
|
set -l colorName "$module"_color
|
|
|
|
set_color "$$colorName"
|
|
echo -n "$$module"
|
|
echo -n " "
|
|
set_color normal
|
|
end
|
|
end
|
|
end |