save
This commit is contained in:
@@ -1,33 +1,28 @@
|
|||||||
local wezterm = require("wezterm")
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
local config = {}
|
local config = {}
|
||||||
|
|
||||||
if wezterm.target_triple:find("windows") then
|
if wezterm.config_builder then
|
||||||
config.default_prog = { "wsl.exe", "-d", "FedoraLinux-43", "-u", "owen", "--cd", "~" }
|
config = wezterm.config_builder()
|
||||||
config.keys = {
|
|
||||||
{
|
|
||||||
key = "F11",
|
|
||||||
mods = "NONE",
|
|
||||||
action = wezterm.action.ToggleFullScreen,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
end
|
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")
|
|
||||||
config.font_size = 20.0
|
|
||||||
|
|
||||||
config.front_end = "WebGpu"
|
|
||||||
|
|
||||||
config.color_scheme = 'Gruber (base16)'
|
config.color_scheme = 'Gruber (base16)'
|
||||||
|
|
||||||
|
config.font = wezterm.font_with_fallback {
|
||||||
|
'ComicShannsMono Nerd Font',
|
||||||
|
'Iosevka Term'
|
||||||
|
}
|
||||||
|
config.font_size = 20.0
|
||||||
|
|
||||||
|
config.enable_scroll_bar = false
|
||||||
|
config.window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
config.tab_bar_at_bottom = true
|
||||||
|
config.freetype_load_target = "HorizontalLcd"
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|||||||
Reference in New Issue
Block a user