dotfiles

wip: wezterm fira code font problem

+14 -2
+14 -2
wezterm/wezterm.lua
··· 1 1 local wezterm = require 'wezterm' 2 2 return { 3 3 font = wezterm.font_with_fallback { 4 + -- 'JetBrains Mono', 4 5 'Fira Code', 5 6 'Menlo', 6 - 'Symbols Nerd Font', 7 - -- TODO: better Korean font 7 + 'Sarasa Mono K', 8 + -- 'FiraCode Nerd Font', 9 + 'Noto Color Emoji', 10 + }, 11 + line_height = 1.2, 12 + allow_square_glyphs_to_overflow_width = "Always", 13 + hide_tab_bar_if_only_one_tab = true, 14 + window_padding = { 15 + top = 1, 16 + bottom = 1, 17 + left = 1, 18 + right = 1, 8 19 }, 9 20 font_size = 16.0, 10 21 color_scheme = 'Catppuccin Mocha', 22 + -- disable_default_key_bindings = true, 11 23 }