From 7b24693bc592ee56b9278f19703853a47ac5ada2 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Tue, 28 May 2024 14:54:02 -0700 Subject: [PATCH] Delete .wezterm.lua --- .wezterm.lua | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .wezterm.lua diff --git a/.wezterm.lua b/.wezterm.lua deleted file mode 100644 index 1c21922..0000000 --- a/.wezterm.lua +++ /dev/null @@ -1,41 +0,0 @@ -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 = 20 -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.hide_tab_bar_if_only_one_tab = true - -config.line_height = 1.25 - -config.window_background_opacity = 0.95 -config.window_decorations = "RESIZE" -config.window_padding = { - left = 8, - right = 8, - top = 8, - bottom = 8, -} - --- OS Specific -config.macos_window_background_blur = 32 - - -return config