new wezterm width; fix starship character

This commit is contained in:
William 2024-09-18 21:28:38 -03:00
parent a3fba249cf
commit 86f059915f
2 changed files with 4 additions and 4 deletions

View file

@ -121,8 +121,8 @@
style = "fg:bg bg:text";
};
character = {
error_symbol = "[](bold red) ";
success_symbol = "[󱐋](bold green) ";
error_symbol = "[](bold red)";
success_symbol = "[󱐋](bold green)";
};
palettes.night = {
bg = "#1E1E2E";

View file

@ -12,9 +12,9 @@ in {
local function get_initial_cols_by_hostname()
local hostname = wezterm.hostname()
if hostname == "rotterdam" then
return 110
return 116
elseif hostname == "io" then
return 89
return 93
else
return 110
end