💄 fix: Change Wezterm font size
This commit is contained in:
parent
0420b8265f
commit
791e962b9c
1 changed files with 23 additions and 7 deletions
|
@ -1,16 +1,32 @@
|
||||||
-- wezterm API
|
-- wezterm API
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
config.color_scheme = 'Catppuccin Macchiato'
|
config.color_scheme = "Catppuccin Macchiato"
|
||||||
config.enable_tab_bar = false
|
config.enable_tab_bar = false
|
||||||
|
|
||||||
config.default_prog = { '/usr/bin/fish' }
|
config.default_prog = { "/usr/bin/fish" }
|
||||||
|
|
||||||
config.font = wezterm.font {
|
config.font = wezterm.font({
|
||||||
family = 'FiraCode Nerd Font',
|
family = "FiraCode Nerd Font",
|
||||||
harfbuzz_features = { 'cv02', 'cv06', 'ss01', 'cv14', 'onum', 'ss04', 'cv18', 'cv31', 'cv30', 'cv25', 'cv26', 'cv32', 'ss06', 'ss07' },
|
harfbuzz_features = {
|
||||||
}
|
"cv02",
|
||||||
|
"cv06",
|
||||||
|
"ss01",
|
||||||
|
"cv14",
|
||||||
|
"onum",
|
||||||
|
"ss04",
|
||||||
|
"cv18",
|
||||||
|
"cv31",
|
||||||
|
"cv30",
|
||||||
|
"cv25",
|
||||||
|
"cv26",
|
||||||
|
"cv32",
|
||||||
|
"ss06",
|
||||||
|
"ss07",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
config.font_size = 11.0
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
Loading…
Reference in a new issue