starship: remove deprecated character.symbol setting
Fixes #1550 PR #1695
This commit is contained in:
parent
68dfc86173
commit
b9597e5774
|
@ -50,7 +50,10 @@ in {
|
||||||
"$character"
|
"$character"
|
||||||
];
|
];
|
||||||
scan_timeout = 10;
|
scan_timeout = 10;
|
||||||
character.symbol = "➜";
|
character = {
|
||||||
|
success_symbol = "➜";
|
||||||
|
error_symbol = "➜";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
@ -18,7 +18,8 @@ style = "bold yellow"
|
||||||
threshold = 30
|
threshold = 30
|
||||||
|
|
||||||
[character]
|
[character]
|
||||||
symbol = "➜"
|
error_symbol = "➜"
|
||||||
|
success_symbol = "➜"
|
||||||
|
|
||||||
[memory_usage]
|
[memory_usage]
|
||||||
threshold = -1
|
threshold = -1
|
||||||
|
|
|
@ -17,7 +17,10 @@ with lib;
|
||||||
"$character"
|
"$character"
|
||||||
];
|
];
|
||||||
scan_timeout = 10;
|
scan_timeout = 10;
|
||||||
character.symbol = "➜";
|
character = {
|
||||||
|
success_symbol = "➜";
|
||||||
|
error_symbol = "➜";
|
||||||
|
};
|
||||||
package.disabled = true;
|
package.disabled = true;
|
||||||
memory_usage.threshold = -1;
|
memory_usage.threshold = -1;
|
||||||
aws.style = "bold blue";
|
aws.style = "bold blue";
|
||||||
|
|
Loading…
Reference in a new issue