From b44cdbfe7dc1880ad1139a223c89b27200d2a6d2 Mon Sep 17 00:00:00 2001 From: VectorKappa Date: Mon, 7 Apr 2025 23:54:02 +0200 Subject: [PATCH] Comic sans :3 --- .config/wezterm/wezterm.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index 963fc23..c40cd7c 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -3,6 +3,13 @@ local wezterm = require 'wezterm' local config = wezterm.config_builder() config.color_scheme = 'Catppuccin Macchiato' +--config.font = wezterm.font('GohuFont uni11 Nerd Font Mono') +config.font = wezterm.font('ComicShannsMono Nerd Font') config.window_background_opacity = 0.6 - +config.scrollback_lines = 2000000 +config.hide_tab_bar_if_only_one_tab = true +config.visual_bell = { + fade_in_duration_ms = 10, + fade_out_duration_ms = 10, +} return config