This commit is contained in:
2025-08-16 13:41:22 -04:00
parent b3bd72b796
commit 808906ed55

View File

@@ -3,7 +3,7 @@ local wezterm = require("wezterm")
local config = {} local config = {}
if wezterm.target_triple:find("windows") then if wezterm.target_triple:find("windows") then
config.default_prog = { "wsl.exe", "-d", "Fedora", "--cd", "~" } config.default_prog = { "wsl.exe", "-d", "Void", "-u", "owen", "--cd", "~" }
config.keys = { config.keys = {
{ {
key = "F11", key = "F11",
@@ -13,8 +13,6 @@ if wezterm.target_triple:find("windows") then
} }
end end
config.scrollback_lines = 3500
config.enable_tab_bar = false config.enable_tab_bar = false
config.window_padding = { config.window_padding = {
left = 0, left = 0,
@@ -26,7 +24,7 @@ config.window_padding = {
config.font = wezterm.font("ComicShannsMono Nerd Font") config.font = wezterm.font("ComicShannsMono Nerd Font")
config.font_size = 20.0 config.font_size = 20.0
-- config.front_end = "WebGpu" config.front_end = "WebGpu"
-- config.window_decorations = "RESIZE" config.window_decorations = "RESIZE"
return config return config