-
Notifications
You must be signed in to change notification settings - Fork 1
/
Wezterm
37 lines (32 loc) · 966 Bytes
/
Wezterm
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
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This table will hold the configuration.
local config = wezterm.config_builder()
config.hide_tab_bar_if_only_one_tab = true
config.font = wezterm.font 'JetBrains Mono'
config.font_size = 14.0
-------------------------------------------------------------------------
--colorscheme
-------------------------------------------------------------------------
--NOTE(elsuizo: 2024-07-08): quiero uno que sea blanco con las letras negras...
config.color_scheme = 'Paper (Gogh)'
config.window_background_opacity = 1.0
config.bold_brightens_ansi_colors = "BrightAndBold"
config.font = wezterm.font { family = 'JetBrains Mono' }
config.font_rules = {
{
intensity = 'Bold',
italic = false,
font = wezterm.font {
family = 'JetBrains Mono',
weight = 'Bold',
},
},
}
config.window_padding = {
left = 2,
right = 2,
top = 3,
bottom = -2,
}
return config