wrappers/wezterm: configure for linux

This commit is contained in:
Nikodem Rabuliński 2024-06-28 10:29:28 +02:00 committed by Nikodem Rabuliński
parent 1d74a1c0e4
commit badaffb532

View file

@ -1,10 +1,18 @@
local wezterm = require 'wezterm'
return {
local cfg = {
color_scheme = 'Default Dark (base16)',
enable_tab_bar = false,
window_decorations = 'RESIZE',
font = wezterm.font('Iosevka Nerd Font'),
font_size = 14.0,
window_decorations = 'TITLE | RESIZE',
font_size = 10.5,
native_macos_fullscreen_mode = true,
hide_mouse_cursor_when_typing = false,
}
if string.find(wezterm.target_triple, "darwin") then
cfg.font_size = 14.0
cfg.window_decorations = 'RESIZE'
end
return cfg