-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wezterm.lua
More file actions
34 lines (34 loc) · 876 Bytes
/
.wezterm.lua
File metadata and controls
34 lines (34 loc) · 876 Bytes
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
local wezterm = require("wezterm")
return {
-- color_scheme = 'termnial.sexy',
color_scheme = "Catppuccin Mocha",
enable_tab_bar = true,
font_size = 13.0,
font = wezterm.font("JetBrains Mono"),
-- macos_window_background_blur = 40,
macos_window_background_blur = 30,
window_background_opacity = 1.0,
-- window_background_opacity = 0.78,
-- window_background_opacity = 0.20,
window_decorations = "RESIZE",
-- keys = {
-- {
-- key = 'f',
-- mods = 'CTRL',
-- action = wezterm.action.ToggleFullScreen,
-- },
-- {
-- key = '\'',
-- mods = 'CTRL',
-- action = wezterm.action.ClearScrollback 'ScrollbackAndViewport',
-- },
-- },
mouse_bindings = {
-- Ctrl-click will open the link under the mouse cursor
{
event = { Up = { streak = 1, button = "Left" } },
mods = "CTRL",
action = wezterm.action.OpenLinkAtMouseCursor,
},
},
}