Created
December 1, 2024 19:32
-
-
Save tlockney/b41df980248df905f4bef8ecc865d5ac to your computer and use it in GitHub Desktop.
This file contains hidden or 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") | |
local config = {} | |
config.automatically_reload_config = true | |
config.enable_tab_bar = false | |
config.window_close_confirmation = "NeverPrompt" | |
config.window_decorations = "RESIZE" | |
-- config.default_cursor_style = "BlinkingBar" | |
config.color_scheme = "Nord (Gogh)" | |
-- config.font = wezterm.font("FiraCode Nerd Font Mono") | |
config.font = wezterm.font("FiraCode Nerd Font Mono", {weight=450, stretch="Normal", style="Normal"}) | |
config.font_size = 16 | |
config.window_padding = { | |
left = 5, | |
right = 5, | |
top = 2, | |
bottom = 2, | |
} | |
config.automatically_reload_config = true | |
config.scrollback_lines = 5000 | |
return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment