Skip to content

Commit

Permalink
fix: broken CJK characters in wezterm
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreytse committed Oct 12, 2024
1 parent bb70283 commit 1231c3d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,14 @@ config.keys = {

-- Font settings
-- Needs to install nerd fonts later
config.font = wezterm.font('Hack Nerd Font')
config.font = wezterm.font_with_fallback {
'Hack Nerd Font', -- icons
'Noto Sans CJK SC', -- Simple Chinese
'Noto Sans CJK TC', -- Traditional Chinese
'Noto Sans CJK HK', -- Traditional Chinese (HK)
'Noto Sans CJK JP', -- Japanese
'Noto Sans CJK KR', -- Korean
}
config.font_size = 12.0 -- [12.0]

-- Appearance settings
Expand Down

0 comments on commit 1231c3d

Please sign in to comment.