-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
41 lines (40 loc) · 1.08 KB
/
wezterm.lua
File metadata and controls
41 lines (40 loc) · 1.08 KB
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
-- INACTIVE FILE?
--
-- return {
--
-- -- Open with tmux
-- default_prog = {
-- "/opt/homebrew/bin/zsh",
-- "--login", "-c",
-- "tmux attach || tmux",
-- },
--
-- hide_tab_bar_if_only_one_tab = true,
--
-- color_scheme = "gruvbox_material_dark_hard",
-- color_schemes = {
-- ["gruvbox_material_dark_hard"] = {
-- foreground = "#D4BE98",
-- background = "#1D2021",
-- cursor_bg = "#D4BE98",
-- cursor_border = "#D4BE98",
-- cursor_fg = "#1D2021",
-- selection_bg = "#D4BE98",
-- selection_fg = "#3C3836",
-- ansi = {
-- "#1d2021", "#ea6962", "#a9b665", "#d8a657",
-- "#7daea3", "#d3869b", "#89b482", "#d4be98"
-- },
-- brights = {
-- "#eddeb5", "#ea6962", "#a9b665", "#d8a657",
-- "#7daea3", "#d3869b", "#89b482", "#d4be98"
-- },
-- },
-- },
-- window_background_opacity = 0.85, -- Set between 0.0 (fully transparent) and 1.0 (opaque)
-- }
return {
front_end = "OpenGL", -- <--- Add this line for macOS
window_background_opacity = 0.85,
-- ... rest of your config ...
}