Skip to content

Instantly share code, notes, and snippets.

@tlockney
Created December 1, 2024 19:32
Show Gist options
  • Save tlockney/b41df980248df905f4bef8ecc865d5ac to your computer and use it in GitHub Desktop.
Save tlockney/b41df980248df905f4bef8ecc865d5ac to your computer and use it in GitHub Desktop.
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