35 lines
631 B
Lua
35 lines
631 B
Lua
local wezterm = require("wezterm")
|
|
|
|
local config = {}
|
|
|
|
if wezterm.target_triple:find("windows") then
|
|
config.default_prog = { "wsl.exe", "-d", "Void", "-u", "owen", "--cd", "~" }
|
|
config.keys = {
|
|
{
|
|
key = "F11",
|
|
mods = "NONE",
|
|
action = wezterm.action.ToggleFullScreen,
|
|
},
|
|
}
|
|
end
|
|
|
|
config.enable_tab_bar = false
|
|
config.window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
}
|
|
|
|
config.scrollback_lines = 1000
|
|
|
|
config.font = wezterm.font("ComicShannsMono Nerd Font")
|
|
config.font_size = 20.0
|
|
|
|
config.front_end = "WebGpu"
|
|
config.window_decorations = "RESIZE"
|
|
|
|
config.color_scheme = 'Gruber (base16)'
|
|
|
|
return config
|