-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wezterm.lua
More file actions
35 lines (30 loc) · 839 Bytes
/
Copy path.wezterm.lua
File metadata and controls
35 lines (30 loc) · 839 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
35
local wezterm = require("wezterm")
local config = wezterm.config_builder()
-- Color scheme
config.color_scheme = "Rosé Pine (Gogh)"
-- Font configs
config.font_size = 19
config.font = wezterm.font("Maple Mono NF")
config.allow_square_glyphs_to_overflow_width = "Never"
config.harfbuzz_features = {
"cv01", -- removes gaps for symbols like ~@#$%&
"cv65", -- alternative &
"ss01", -- breaks equals
"ss04", -- breaks multi underscore
"ss05", -- removes thin backslashes
"ss07", -- relaxes multiple greaters
}
-- Cursor configs
config.cursor_blink_rate = 0
config.hide_mouse_cursor_when_typing = true
-- Window rules
config.enable_wayland = false
config.enable_tab_bar = false
config.window_decorations = "NONE"
config.window_padding = {
left = 0,
right = 0,
top = 10,
bottom = 0,
}
return config