Skip to content

Instantly share code, notes, and snippets.

@ashleysommer
Last active February 6, 2024 09:21
Show Gist options
  • Save ashleysommer/3d016124c02eb8cf15c5a94c18a0eeeb to your computer and use it in GitHub Desktop.
Save ashleysommer/3d016124c02eb8cf15c5a94c18a0eeeb to your computer and use it in GitHub Desktop.
.config/wezterm/wezterm.lua
local wezterm = require 'wezterm'
local config = {}
config.front_end = "WebGpu"
config.font = wezterm.font 'FantasqueSansMono Nerd Font Mono'
config.font_size = 12
config.dpi = 110
;config.color_scheme = 'Builtin Solarized Dark'
config.color_scheme = 'Monokai Dark (Gogh)'
config.bold_brightens_ansi_colors = "BrightOnly"
config.use_fancy_tab_bar = false
config.hide_tab_bar_if_only_one_tab = false
config.enable_scroll_bar = true
config.inactive_pane_hsb = {
saturation = 0.9,
brightness = 0.8,
}
config.window_background_opacity = 0.82
config.window_decorations = "INTEGRATED_BUTTONS|RESIZE"
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment