diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-06-14 17:22:02 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-06-15 13:28:44 -0400 |
| commit | 1dd059cabd6cdd7d707a06e734454e64b49a8e0d (patch) | |
| tree | 3367b58c72cb8fc99455515fade846db5870cf95 /wezterm/wezterm.lua | |
| parent | 04e99fb04e5888bf7af6a3384d420bd35e1bf8a5 (diff) | |
Add wezterm keybinds and font config
Diffstat (limited to 'wezterm/wezterm.lua')
| -rw-r--r-- | wezterm/wezterm.lua | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 28f4fcf..8b646ae 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -4,12 +4,22 @@ local config = wezterm.config_builder() require('keybinds').apply_to_config(config) +-- fonts +config.font_size = 16 +config.font = wezterm.font_with_fallback({ + { + family = "FiraMono Nerd Font", + weight = "Medium", + harfbuzz_features = { "ss03" }, + }, + "Noto Color Emoji", +}) + -- tab config.use_fancy_tab_bar = false config.hide_tab_bar_if_only_one_tab = true -- window appearnce -config.font_size = 12 config.window_padding = { left = 0, right = 0, @@ -17,6 +27,7 @@ config.window_padding = { bottom = 0, } config.window_background_opacity = 0.75 +config.window_decorations = "RESIZE" -- colors require('colorscheme').apply_to_config(config) |
