From a6da425e3eceb45bb76aa43d818ed7f735ac0496 Mon Sep 17 00:00:00 2001 From: zymon Date: Sun, 18 Aug 2024 12:47:49 +0200 Subject: [PATCH] wezterm config --- config/wezterm/wezterm.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 config/wezterm/wezterm.lua diff --git a/config/wezterm/wezterm.lua b/config/wezterm/wezterm.lua new file mode 100644 index 0000000..2e1a68a --- /dev/null +++ b/config/wezterm/wezterm.lua @@ -0,0 +1,21 @@ +local wezterm = require 'wezterm' + +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%)', + }, + + 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, +}