Files
dotfiles/wezterm/wezterm.lua
Lee Tang 4a8e15db31 update
Signed-off-by: Lee Tang <i@d0zingcat.dev>
2023-05-04 16:22:56 +08:00

65 lines
1.8 KiB
Lua

local wezterm = require('wezterm')
return {
default_cwd = wezterm.home_dir .. '/work',
font_size = 14,
font = wezterm.font_with_fallback({
'JetBrains Mono',
'JetBrainsMono Nerd Font Mono',
}),
colors = {
tab_bar = {
active_tab = {
bg_color = '#24283b',
fg_color = '#c0caf5',
},
},
},
use_fancy_tab_bar = true,
-- hide_tab_bar_if_only_one_tab = true,
color_scheme = 'tokyonight',
window_decorations = "INTEGRATED_BUTTONS | RESIZE",
window_frame = {
font_size = 14.0,
},
window_padding = {
left = 5,
right = 5,
top = 0,
bottom = 0,
},
foreground_text_hsb = {
hue = 1.0,
saturation = 1.0,
brightness = 1.2,
},
use_ime = true, -- fix Chinese
skip_close_confirmation_for_processes_named = {
'fzf',
'zsh',
'fzf',
},
ssh_domains = {
{
name = 'debian',
remote_address = 'debian01',
username = 'd0zingcat',
multiplexing = 'None',
},
},
keys = {
--{ key = 'l', mods = 'CMD', action = wezterm.action({ ShowLauncherArgs = { flags = 'FUZZY|DOMAINS' } }) },
--{ key = 's', mods = 'CMD', action = wezterm.action({ ShowLauncherArgs = { flags = 'FUZZY|WORKSPACES' } }) },
{ key = 'w', mods = 'CMD', action = wezterm.action({ CloseCurrentPane = { confirm = false } }) },
},
-- hyperlink_rules = {
-- {
-- regex = [[\b(https|http)://\S*\b]],
-- format = '$0',
-- },
-- {
-- regex = [[["]?([\w\d]{1}[-\w\d]+)(/){1}([-\w\d\.]+)["]?]],
-- format = 'https://www.github.com/$1/$3',
-- }
-- }
}