Created
May 2, 2025 07:52
-
-
Save dominiquegarmier/29597f085125f70434f87431de2ec3c0 to your computer and use it in GitHub Desktop.
wezterm
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") | |
return { | |
color_scheme = "Gruvbox Dark (Gogh)", | |
-- color_scheme = "Catppuccin Mocha", -- or Macchiato, Frappe, Latte | |
enable_tab_bar = false, | |
font = wezterm.font("SFMono Nerd Font"), | |
harfbuzz_features = { "liga=0", "clig=0", "calt=0" }, | |
font_size = 14, | |
macos_window_background_blur = 20, | |
window_background_opacity = 0.9, | |
window_decorations = "INTEGRATED_BUTTONS|RESIZE", | |
window_padding = { | |
top = "24pt", | |
}, | |
-- init | |
initial_rows = 30, | |
initial_cols = 80, | |
-- scrolling | |
scrollback_lines = 10000, | |
-- launch tmux | |
default_prog = { "zsh", "-l", "-c", "tmux new -As0" }, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment