-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.wezterm.lua
47 lines (38 loc) · 1.62 KB
/
.wezterm.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
-- Pull in the wezterm API
local wezterm = require("wezterm")
-- This table will hold the configuration.
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then
config = wezterm.config_builder()
end
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
config.color_scheme = "Catppuccin Frappe"
--config.color_scheme = "OneHalfDark"
--config.font = wezterm.font("Hack Nerd Font", { weight = "DemiBold", stretch = "Expanded" })
--config.font = wezterm.font("JetBrainsMono Nerd Font", { weight = "DemiBold", stretch = "Expanded" })
--config.font = wezterm.font("RobotoMono Nerd Font", { weight = "DemiBold", stretch = "Expanded" })
--config.font = wezterm.font("M+1Code Nerd Font", { weight = "DemiBold", stretch = "Expanded" })
config.font = wezterm.font("MesloLGL Nerd Font", { weight = "DemiBold", stretch = "Expanded" })
config.font_size = 12
config.window_background_opacity = 0.8
--config.text_background_opacity = 0.9
config.colors = {
background = "black",
-- 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%)",
}
config.inactive_pane_hsb = {
saturation = 0.9,
brightness = 0.8,
}
config.hide_tab_bar_if_only_one_tab = true
-- and finally, return the configuration to wezterm
return config