blob: c6052b5f43987a285a11d2224150ac77a60db3f0 (
plain)
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
|
local wezterm = require 'wezterm'
local colors= require 'colors'
local config = {}
--config.font = wezterm.font 'Classic Console' config.font_size = 15 config.font = wezterm.font 'Source Code Pro'
config.set_environment_variables = {
wezterm = 'yes',
}
config.enable_tab_bar = false
config.font = wezterm.font_with_fallback {
'iosevka',
'iosevka-nerd',
'B612 Mono',
'JetBrainsMono',
'JetBrainsMono Nerd Font',
'JetBrainsMono Nerd Font Mono',
'IPAGothic',
'FreeMono',
}
config.font_size = 12
config.colors=colors
config.window_background_opacity = 0.8
config.unix_domains = {
{
name = 'unix',
no_serve_automatically = false,
},
}
config.front_end = "OpenGL"
return config
|