From 1543fa7e63654042b577affc644bd170bc8858be Mon Sep 17 00:00:00 2001 From: José Juan Loeza Sierra Date: Tue, 31 Mar 2026 23:29:47 -0700 Subject: remove unused configs --- dot-config/wezterm/wezterm.lua | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 dot-config/wezterm/wezterm.lua (limited to 'dot-config/wezterm/wezterm.lua') 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 -- cgit v1.3