From e2a94521cc1879f79a5985ac452c37a7a401e087 Mon Sep 17 00:00:00 2001 From: reonokiy Date: Sat, 21 Sep 2024 10:55:34 +0800 Subject: [PATCH] update wezterm config --- dot_wezterm.lua => dot_wezterm.lua.tmpl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) rename dot_wezterm.lua => dot_wezterm.lua.tmpl (66%) diff --git a/dot_wezterm.lua b/dot_wezterm.lua.tmpl similarity index 66% rename from dot_wezterm.lua rename to dot_wezterm.lua.tmpl index 10cce52..1013108 100644 --- a/dot_wezterm.lua +++ b/dot_wezterm.lua.tmpl @@ -4,14 +4,17 @@ local config = wezterm.config_builder() config.color_scheme = 'Catppuccin Mocha' config.font = wezterm.font_with_fallback { - 'DejaVuSansM Nerd Font Mono', - 'Fira Code', + 'Fira Code Nerd Font Mono', 'Cascadia Code', } -config.window_decorations = "RESIZE" +config.window_decorations = "TITLE" config.hide_tab_bar_if_only_one_tab = true config.line_height = 1.2 + +{{ if eq .chezmoi.os "windows" -}} config.default_domain = 'WSL:AlmaLinuxOS-9' +{{- else if eq .chezmoi.os "linux" -}} +{{- end }} return config