fix(wezterm): broken font redering on 24.11 #152
1 changed files with 13 additions and 6 deletions
|
@ -90,10 +90,17 @@ in
|
||||||
# Terminal
|
# Terminal
|
||||||
wezterm = {
|
wezterm = {
|
||||||
enable = cfg.terminal == "wezterm";
|
enable = cfg.terminal == "wezterm";
|
||||||
extraConfig = lib.optionalString config.jhome.styling.enable ''
|
extraConfig =
|
||||||
config = {}
|
lib.optionalString config.jhome.styling.enable # lua
|
||||||
|
''
|
||||||
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.front_end = "WebGpu"
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
config.window_padding = { left = 1, right = 1, top = 1, bottom = 1 }
|
config.window_padding = { left = 1, right = 1, top = 1, bottom = 1 }
|
||||||
|
|
||||||
return config
|
return config
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue