feat(wezterm): add wezterm
This commit is contained in:
parent
a4bff2a186
commit
210bc59571
2 changed files with 45 additions and 1 deletions
42
dotfiles/wezterm.lua
Normal file
42
dotfiles/wezterm.lua
Normal file
|
@ -0,0 +1,42 @@
|
|||
local wezterm = require 'wezterm';
|
||||
|
||||
return {
|
||||
audible_bell = "Disabled",
|
||||
bold_brightens_ansi_colors = true,
|
||||
color_scheme = "One Light (base16)",
|
||||
enable_tab_bar = false,
|
||||
enable_wayland = true,
|
||||
font_size = 12,
|
||||
font = wezterm.font("CaskaydiaCove Nerd Font"),
|
||||
window_background_opacity = 0.97,
|
||||
window_close_confirmation = 'NeverPrompt',
|
||||
default_prog = { '/run/current-system/sw/bin/bash' },
|
||||
|
||||
selection_fg = 'black',
|
||||
selection_bg = '#fafafa',
|
||||
|
||||
keys = {
|
||||
{
|
||||
key = 'Escape',
|
||||
mods = 'CTRL',
|
||||
action = wezterm.action.QuickSelect,
|
||||
},
|
||||
},
|
||||
|
||||
window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
|
||||
quick_select_patterns = {
|
||||
'^([^ ]+) +(?:ClusterIP|Bound)',
|
||||
'^([^ ]+) +(?:[0-9]+/[0-9]+)',
|
||||
'^([^ ]+) +(?:[0-9]+ )',
|
||||
'^([^ ]+) +(?:Opaque|kubernetes\\.io|helm\\.sh)',
|
||||
'^([^ ]+) +(?:Active)',
|
||||
'[^ ]+@[^ ]+.service',
|
||||
'git push.*',
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue