Last active
June 7, 2024 14:03
-
-
Save shanzi/4db947851e108b0ec9c9f1bf07d472b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local wezterm = require 'wezterm'; | |
return { | |
enable_tab_bar = false, | |
font = wezterm.font_with_fallback({ | |
"JetBrainsMono Nerd Font", | |
"PingFang SC", | |
}), | |
font_size = 12, | |
colors = { | |
cursor_bg = '#EFEFEF', | |
cursor_border = '#EFEFEF', | |
}, | |
keys = { | |
{ key = 'Enter', mods = 'ALT', action = 'DisableDefaultAssignment' } | |
}, | |
warn_about_missing_glyphs = false, | |
window_background_opacity = 0.85, | |
window_padding = { | |
left = 0, | |
right = 0, | |
top = 0, | |
bottom = 0, | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment