Last active
August 2, 2026 12:39
-
-
Save s-mage/d3fc18799748066c5b7686cc5032648b to your computer and use it in GitHub Desktop.
~/.wezterm.lua
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 = wezterm.config_builder() | |
| config.font = wezterm.font 'Fira Code' | |
| config.font_size = 13 | |
| config.line_height = 1.25 | |
| config.default_prog = { '/opt/homebrew/bin/bash' } | |
| config.native_macos_fullscreen_mode = false | |
| config.tab_bar_at_bottom = true | |
| config.use_fancy_tab_bar = false | |
| config.tab_max_width = 35 | |
| config.window_decorations = "RESIZE" | |
| config.keys = { | |
| { key = 'DownArrow', mods = 'CMD', action = wezterm.action.SpawnTab('CurrentPaneDomain'), }, | |
| { key = 'l', mods = 'CMD', action = wezterm.action.ActivateCommandPalette, }, | |
| } | |
| -- Register external color scheme directory | |
| local colors_dir = wezterm.home_dir .. '/opensource/boring-tomorrow/colors' | |
| config.color_scheme_dirs = { colors_dir } | |
| -- Set the color scheme to the one we just defined | |
| config.color_scheme = 'Boring Tomorrow' | |
| local boring_tomorrow_theme = { foreground = "#000000", selection = "#efefef", } | |
| local boring_blue_theme = { foreground = "#000000", selection = "#A9DDFF", } | |
| local theme = boring_tomorrow_theme | |
| config.command_palette_fg_color = theme.foreground | |
| config.command_palette_bg_color = theme.selection | |
| config.command_palette_font = wezterm.font "Fira Code" | |
| config.command_palette_rows = 20 | |
| config.window_padding = { | |
| left = '0cell', | |
| right = '0cell', | |
| top = '0.75cell', | |
| bottom = '0cell', | |
| } | |
| return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment