-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wezterm.lua
More file actions
32 lines (30 loc) · 911 Bytes
/
.wezterm.lua
File metadata and controls
32 lines (30 loc) · 911 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
local w = require("wezterm")
local is_win = w.target_triple:find("windows")
w.on("format-window-title", function() return "terminal" end)
return {
window_padding = { left = 0, right = 0, top = 0, bottom = 0 },
hide_tab_bar_if_only_one_tab = true,
use_fancy_tab_bar = false,
initial_cols = 90,
initial_rows = 30,
colors = {
foreground = "#A0A0A0",
background = "#303030",
cursor_bg = "#FFFFFF",
cursor_fg = "#232323",
cursor_border = "#FFFFFF",
selection_bg = "#CACACA",
selection_fg = "#232323",
ansi = {
"#383838", "#9b6e6b", "#777777", "#9b806b",
"#778060", "#767676", "#b8b8b8", "#b0b0b0"
},
brights = {
"#474747", "#9b7f7d", "#8c8c8c", "#9b8c7d",
"#a0b77d", "#a3a3a3", "#cfcfcf", "#c0c0c0"
}
},
font = w.font("Paper Mono"),
font_size = is_win and 11 or 16,
default_prog = is_win and { "powershell.exe", "-NoLogo" }
}