Fixup wezterm.lua
This commit is contained in:
parent
a2e9abbb76
commit
973f335277
1 changed files with 5 additions and 3 deletions
|
@ -1,17 +1,19 @@
|
|||
local wezterm = require 'wezterm';
|
||||
|
||||
function font_with_fallback(name, params)
|
||||
local names = {name, "Noto Color Emoji", "JetBrains Mono"}
|
||||
local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono"}
|
||||
return wezterm.font_with_fallback(names,params)
|
||||
end
|
||||
|
||||
return {
|
||||
-- font stuff
|
||||
font = font_with_fallback("Iosevka Custom Light"),
|
||||
-- font = font_with_fallback("Iosevka Custom"),
|
||||
font = font_with_fallback("Iosevka Custom"),
|
||||
font_shaper = "Allsorts",
|
||||
font_rules = {
|
||||
{
|
||||
italic = true,
|
||||
font = font_with_fallback("Dank Mono Italic"),
|
||||
font = font_with_fallback("Dank Mono", {italic=true}),
|
||||
},
|
||||
},
|
||||
font_size = 14.0,
|
||||
|
|
Loading…
Add table
Reference in a new issue