From 5d225f306abee2b1d858095f85dd211bf459853b Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 28 Jul 2024 02:13:46 +0100 Subject: [PATCH] feat(wezterm.lua): add a new Wezterm configuration file with custom settings for a better user experience --- .config/wezterm/wezterm.lua | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .config/wezterm/wezterm.lua diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..2d98488 --- /dev/null +++ b/.config/wezterm/wezterm.lua @@ -0,0 +1,36 @@ +local wezterm = require("wezterm") + +local config = wezterm.config_builder() + +config = { + automatically_reload_config = true, + enable_tab_bar = false, + window_close_confirmation = "NeverPrompt", + window_decorations = "RESIZE", + default_cursor_style = "BlinkingBlock", + cursor_blink_rate = 0, + color_scheme = "tokyonight", + font = wezterm.font("FiraCode Nerd Font", { weight = 450, stretch = "Normal", style = "Normal" }), + font_size = 12.5, + background = { + { + source = { + Color = "#1a1b26", + }, + width = "100%", + height = "100%", + opacity = 0.95, + + } + }, + window_padding = { + left = 3, + right = 3, + top = 20, + bottom = 0, + }, + + +} + +return config