diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2025-03-02 12:28:02 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2025-03-02 12:28:02 +0400 |
| commit | 956501fa41602f10a03fda40e79e38896132ff35 (patch) | |
| tree | 627598871022349a07d6a15a8a727436df28b7d7 | |
| parent | c7d3e200d112505550230618b6b061b1cc9d7b36 (diff) | |
feat: add zellij autostart to wezterm
| -rw-r--r-- | .config/wezterm/wezterm.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index 739155f..4117e89 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -16,14 +16,14 @@ function colors_for_appearance(appearance) if appearance:find 'Dark' then return dark else - return bright + return dark end end conf.colors = colors_for_appearance(get_appearance()) conf.font = wezterm.font "Fira Code" conf.hide_tab_bar_if_only_one_tab = true -conf.font_size = 15 +conf.font_size = 13 conf.window_padding = { left = 0, right = 0, @@ -35,4 +35,6 @@ conf.window_close_confirmation = 'NeverPrompt' conf.window_background_opacity = 0.999 conf.native_macos_fullscreen_mode = true +conf.default_prog = { "zellij" } + return conf |