18 lines
433 B
Lua
18 lines
433 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local cfg = {
|
|
color_scheme = 'Default Dark (base16)',
|
|
enable_tab_bar = false,
|
|
font = wezterm.font('Iosevka Nerd Font'),
|
|
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
|