-
Notifications
You must be signed in to change notification settings - Fork 0
/
.wezterm.lua
43 lines (42 loc) · 1.07 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
local wezterm = require("wezterm")
local config = wezterm.config_builder()
-- config.color_scheme = "Tokyo Night"
-- config.color_scheme = "Edge Dark (base16)"
-- config.color_scheme = "Kasugano (terminal.sexy)"
-- config.color_scheme = "kanagawabones"
config.color_scheme = "Catppuccin Mocha"
-- config.color_scheme = "rose-pine"
-- [[ Font ]]
-- JetbrainsMono Nerd Font
-- Monaspace Neon
-- MonoLisa Nerd Font
-- CommitMono Nerd Font
-- FiraCode Nerd Font
-- Maple Mono NF
-- Fragment Mono
-- Rec Mono Duotone
local fontName = "JetbrainsMono Nerd Font"
config.font = wezterm.font(fontName)
config.font_rules = {
{
intensity = "Bold",
italic = false,
font = wezterm.font(fontName, { weight = "Bold", stretch = "Normal", style = "Normal" }),
},
{
intensity = "Bold",
italic = true,
font = wezterm.font(fontName, { weight = "Bold", stretch = "Normal", style = "Italic" }),
},
}
config.font_size = 14
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
config.hide_tab_bar_if_only_one_tab = true
config.front_end = "WebGpu"
config.line_height = 1.1
return config