diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-31 23:29:47 -0700 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-31 23:31:50 -0700 |
| commit | 1543fa7e63654042b577affc644bd170bc8858be (patch) | |
| tree | bb7232ba400825d3bd7b673c55a3c007dfbd125b /dot-config/wezterm/wezterm.lua | |
| parent | 6bd0938c018b52c138d608977043467eae93fefd (diff) | |
remove unused configs
Diffstat (limited to 'dot-config/wezterm/wezterm.lua')
| -rw-r--r-- | dot-config/wezterm/wezterm.lua | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dot-config/wezterm/wezterm.lua b/dot-config/wezterm/wezterm.lua deleted file mode 100644 index 1efaba2..0000000 --- a/dot-config/wezterm/wezterm.lua +++ /dev/null @@ -1,35 +0,0 @@ -local wezterm = require("wezterm") - -wezterm.log_error("Version " .. wezterm.version) - -local config = wezterm.config_builder() - -config.default_prog = { "/usr/bin/bash" } - --- helper to merge into config -local function mergeConfig(t) - for k, v in pairs(t) do - config[k] = v - end -end - -local theme = require("colors.kanso-zen") -mergeConfig(theme) - -config.font_size = 14 -config.font = wezterm.font("PragmataPro Mono Liga") - -config.window_padding = { - left = "2cell", - right = "2cell", - top = "2cell", - bottom = "1cell", -} - -config.enable_tab_bar = false - --- lowering the initial cols than the default --- fixes the problem with niri -config.initial_cols = 64 - -return config |
