1
0
Fork 0
ryzowanie/config/wezterm/wezterm.lua

31 lines
1,020 B
Lua
Raw Normal View History

2024-08-18 12:47:49 +02:00
local wezterm = require 'wezterm'
2024-08-28 00:07:55 +02:00
local act = wezterm.action
2024-08-18 12:47:49 +02:00
return {
font = wezterm.font 'ZedMono Nerd Font',
colors = {
-- Make the selection text color fully transparent.
-- When fully transparent, the current text color will be used.
selection_fg = 'none',
-- Set the selection background color with alpha.
-- When selection_bg is transparent, it will be alpha blended over
-- the current cell background color, rather than replace it
selection_bg = 'rgba(50% 50% 50% 50%)',
},
2024-08-28 00:07:55 +02:00
keys = {
{ key = 'v', mods = 'ALT', action = act.PasteFrom 'Clipboard' },
{ key = 'v', mods = 'ALT', action = act.PasteFrom 'PrimarySelection' },
},
2024-08-18 12:47:49 +02:00
window_background_opacity = 0.7,
text_background_opacity = 0.3,
color_scheme = 'Tokyo Night',
hide_tab_bar_if_only_one_tab = true,
font_size = 10.0,
warn_about_missing_glyphs = false,
2024-08-25 13:26:41 +02:00
harfbuzz_features = {
"calt=0",
"clig=0",
"liga=0"
},
2024-08-18 12:47:49 +02:00
}