wrappers/wezterm: configure for linux
This commit is contained in:
parent
1d74a1c0e4
commit
badaffb532
1 changed files with 11 additions and 3 deletions
|
@ -1,10 +1,18 @@
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
return {
|
local cfg = {
|
||||||
color_scheme = 'Default Dark (base16)',
|
color_scheme = 'Default Dark (base16)',
|
||||||
enable_tab_bar = false,
|
enable_tab_bar = false,
|
||||||
window_decorations = 'RESIZE',
|
|
||||||
font = wezterm.font('Iosevka Nerd Font'),
|
font = wezterm.font('Iosevka Nerd Font'),
|
||||||
font_size = 14.0,
|
window_decorations = 'TITLE | RESIZE',
|
||||||
|
font_size = 10.5,
|
||||||
native_macos_fullscreen_mode = true,
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue