From b7437534581cb90736c5000ac6dcac568260603d Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Thu, 31 Oct 2024 19:14:00 +0100 Subject: [PATCH] fix(wezterm): update config --- .config/wezterm/colors/moonfly-wezterm.toml | 9 ++++++++- .config/wezterm/wezterm.lua | 13 ++++++++----- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.config/wezterm/colors/moonfly-wezterm.toml b/.config/wezterm/colors/moonfly-wezterm.toml index 03d1e78..bf85d13 100644 --- a/.config/wezterm/colors/moonfly-wezterm.toml +++ b/.config/wezterm/colors/moonfly-wezterm.toml @@ -1,3 +1,10 @@ +# moonfly theme for WezTerm +# +# Upstream: github.com/bluz71/vim-moonfly-colors +# +# Usage: copy this theme into the colors directory and then select the moonfly +# 'color_scheme' in your 'wezterm.lua' configuration. + [metadata] name = "moonfly" origin_url = "https://github.com/bluz71/vim-moonfly-colors" @@ -27,7 +34,7 @@ brights = [ "#949494", "#ff5189", "#36c692", - "#c2c292", + "#c6c684", "#74b2ff", "#ae81ff", "#85dc85", diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index eecdf20..91375e2 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -10,12 +10,15 @@ local ENABLE_MULTIPLEXING = false -- General settings config.window_padding = { - left = 6, - right = 6, - top = 6, - bottom = 6, + left = 5, + right = 5, + top = 5, + bottom = 5, } config.audible_bell = "Disabled" +config.warn_about_missing_glyphs = false +config.initial_cols = 179 +config.initial_rows = 60 -- Settings below get overriden if multiplexing is enabled config.window_decorations = "TITLE|RESIZE" config.enable_tab_bar = false @@ -39,7 +42,7 @@ config.color_scheme = "moonfly" local fonts = require("fonts") config.font = fonts.regular -config.font_size = 11 +config.font_size = 12 config.font_rules = { fonts.rules.italic, fonts.rules.bold,