From fd84453e5fe917d3f90e8d9f8185ec9bf2faa1f4 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Fri, 24 May 2024 13:05:32 -0700 Subject: [PATCH] Create .wezterm.lua --- .wezterm.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .wezterm.lua diff --git a/.wezterm.lua b/.wezterm.lua new file mode 100644 index 0000000..5e4b26a --- /dev/null +++ b/.wezterm.lua @@ -0,0 +1,33 @@ +local wezterm = require 'wezterm' + +local config = wezterm.config_builder() + +config.audible_bell = 'Disabled' + +config.color_scheme = 'tokyonight_storm' + +config.font = wezterm.font('OperatorMono Nerd Font', { weight = 400 }) +config.font_size = 19 +config.font_rules = { + { + intensity = 'Bold', + italic = true, + font = wezterm.font('OperatorMono Nerd Font', { weight = 600, style = 'Italic' }) + }, + { + intensity = 'Bold', + italic = false, + font = wezterm.font('OperatorMono Nerd Font', { weight = 600 }) + } +} + +config.line_height = 1.25 + +config.window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0 +} + +return config