-- -- Author : Dennis Eriksen -- File : @wezterm.lua -- Created : 2024-08-13 -- -- Based on template from https://alexplescan.com/posts/2024/08/10/wezterm/ -- Import the wezterm module local wezterm = require 'wezterm' -- Creates a config object which we will be adding our config to local config = wezterm.config_builder() --config.term = 'wezterm' -- Recognize OS local is_linux = wezterm.target_triple:find("linux") ~= nil local is_darwin = wezterm.target_triple:find("darwin") ~= nil -- From https://stackoverflow.com/a/326715 function os.capture(cmd, raw) local f = assert(io.popen(cmd, 'r')) local s = assert(f:read('*a')) f:close() if raw then return s end s = string.gsub(s, '^%s+', '') s = string.gsub(s, '%s+$', '') s = string.gsub(s, '[\n\r]+', ' ') return s end -- Env config.set_environment_variables = { PATH = os.capture("zsh -c 'echo -n $PATH'"), } -- Shell -- use login(1) to make sure we set the right logname. -- Workaround for https://github.com/wez/wezterm/issues/6196 if is_darwin then local USER = os.getenv("USER") local SHELL = os.getenv("SHELL") config.default_prog = { '/usr/bin/login', '-fpq', USER, SHELL, '-li' } end -- Theme ------------------------------------------------------------ --config.color_scheme = 'Gruvbox dark, hard (base16)' config.colors = { -- Most of these, if not all, are stolen from Kitty foreground = '#dddddd', background = '#000000', ansi = { '#000000', -- color0, 'black', '#cc0403', -- color1, 'red', '#19cb00', -- color2, 'green', '#cecb00', -- color3, 'yellow', '#0d73cc', -- color4, 'blue', '#cb1ed1', -- color5, 'magenta', '#0dcdcd', -- color6, 'cyan', '#dddddd', -- color7, 'white', }, brights = { '#767676', -- color8, 'grey', '#f2201f', -- color9, 'red', '#23fd00', -- color10, 'lime', '#fffd00', -- color11, 'yellow', '#1a8fff', -- color12, 'blue', '#fd28ff', -- color13, 'fuchsia', '#14ffff', -- color14, 'aqua', '#ffffff', -- color15, 'white', }, tab_bar = { -- The color of the strip that goes along the top of the window -- (does not apply when fancy tab bar is in use) background = 'black', -- The active tab is the one that has focus in the window active_tab = { -- The color of the background area for the tab bg_color = '#3c3c3c', -- The color of the text for the tab fg_color = '#d5d5d5', -- Specify whether you want "Half", "Normal" or "Bold" intensity for the -- label shown for this tab. -- The default is "Normal" intensity = 'Bold', -- Specify whether you want "None", "Single" or "Double" underline for -- label shown for this tab. -- The default is "None" --underline = 'None', -- Specify whether you want the text to be italic (true) or not (false) -- for this tab. The default is false. --italic = false, -- Specify whether you want the text to be rendered with strikethrough (true) -- or not for this tab. The default is false. --strikethrough = false, }, -- Inactive tabs are the tabs that do not have focus inactive_tab = { bg_color = '#202020', fg_color = '#a0a0a0', -- The same options that were listed under the `active_tab` section above -- can also be used for `inactive_tab`. }, -- You can configure some alternate styling when the mouse pointer -- moves over inactive tabs inactive_tab_hover = { bg_color = '#7c7c7c', fg_color = '#f9f9f9', -- The same options that were listed under the `active_tab` section above -- can also be used for `inactive_tab_hover`. }, -- The new tab button that let you create new tabs new_tab = { bg_color = '#202020', fg_color = '#a0a0a0', -- The same options that were listed under the `active_tab` section above -- can also be used for `new_tab`. }, -- You can configure some alternate styling when the mouse pointer -- moves over the new tab button new_tab_hover = { bg_color = '#7c7c7c', fg_color = '#f9f9f9', -- The same options that were listed under the `active_tab` section above -- can also be used for `new_tab_hover`. }, }, } -- Font ------------------------------------------------------------ -- Installing fonts: -- - Debian: apt install fonts-ubuntu fonts-noto -- - macOS: brew install font-ubuntu-mono font-noto-mono font-noto-color-emoji font-ubuntu-mono-nerd-font -- - OpenBSD: pkg_add -i ubuntu-fonts noto-fonts ubuntu-nerd-fonts noto-nerd-fonts config.font = wezterm.font_with_fallback({ -- ~/Library/Fonts/UbuntuMono-Regular.ttf, CoreText "Ubuntu Mono", -- Might have more utf-8 "Noto Mono", -- Fallbacks automagically added by wezterm: -- -- , BuiltIn -- "JetBrains Mono", -- -- , BuiltIn -- -- Assumed to have Emoji Presentation -- "Noto Color Emoji", -- -- , BuiltIn -- "Symbols Nerd Font Mono", }) -- And a font size that won't have you squinting config.font_size = 18 -- Custom font size on character select menu config.char_select_font_size = 30 -- Keys ------------------------------------------------------------ -- The default behavior is to treat the left Option key as the Alt modifier -- with no composition effects, while the right Option key performs composition -- (making it approximately equivalent to AltGr on other operating systems). config.send_composed_key_when_left_alt_is_pressed = true config.send_composed_key_when_right_alt_is_pressed = true config.keys = { -- Select next/prev tab with CMD+arrows { key = 'LeftArrow', mods = 'CMD', action = wezterm.action.ActivateTabRelative(-1) }, { key = 'RightArrow', mods = 'CMD', action = wezterm.action.ActivateTabRelative(1) }, { key = ',', mods = 'CMD', action = wezterm.action.SpawnCommandInNewTab { cwd = wezterm.home_dir, args = { os.capture("zsh -lc 'echo -n $EDITOR'"), wezterm.config_file }, }, }, } -- Mouse / Selection / Hyperlinks ------------------------------------------------------------ -- https://wezfurlong.org/wezterm/config/lua/config/selection_word_boundary.html -- Configures the boundaries of a word, thus what is selected when doing a word -- selection with the mouse. -- Default: " \t\n{}[]()\"'`" config.selection_word_boundary = " \t\n{}[]()\"'`|│" -- Hyperlink rules -- Seems there is a bug in Wezterm where urls in parenthesis aren't clickable. -- https://github.com/wez/wezterm/issues/3803 -- -- Fix from https://github.com/wez/wezterm/issues/3803#issuecomment-2379791340 config.hyperlink_rules = { -- Matches: a URL in parens: (URL) -- Markdown: [text](URL title) { regex = '\\((\\w+://\\S+?)(?:\\s+.+)?\\)', format = '$1', highlight = 1, }, -- Matches: a URL in brackets: [URL] { regex = '\\[(\\w+://\\S+?)\\]', format = '$1', highlight = 1, }, -- Matches: a URL in curly braces: {URL} { regex = '\\{(\\w+://\\S+?)\\}', format = '$1', highlight = 1, }, -- Matches: a URL in angle brackets: { regex = '<(\\w+://\\S+?)>', format = '$1', highlight = 1, }, -- Then handle URLs not wrapped in brackets -- regex = '\\b\\w+://\\S+[)/a-zA-Z0-9-]+', { regex = '(?