Skip to content

How to change the Command Palette's font? #5289

Answered by nekowinston
huylv asked this question in Q&A
Discussion options

You must be logged in to vote

via config.window_frame, e.g.:

local wezterm = require("wezterm")

local c = wezterm.config_builder()

c.font = wezterm.font_with_fallback({
	"Berkeley Mono",
	"Symbols Nerd Font",
})
c.font_size = 13
c.command_palette_font_size = c.font_size
c.window_frame = {
	font = wezterm.font("IBM Plex Sans"),
}

return c

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@huylv
Comment options

@nekowinston
Comment options

Answer selected by huylv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants