From f7e9b55da36000f1084d7d06a68e1f7bb64bb581 Mon Sep 17 00:00:00 2001 From: Hunter Stasonis Date: Sun, 13 Apr 2025 12:48:44 -0400 Subject: [PATCH] wezterm config --- config/wezterm/ashen.lua | 17 +++++++++++++++++ config/wezterm/wezterm.lua | 22 ++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 config/wezterm/ashen.lua create mode 100644 config/wezterm/wezterm.lua diff --git a/config/wezterm/ashen.lua b/config/wezterm/ashen.lua new file mode 100644 index 0000000..57f1f19 --- /dev/null +++ b/config/wezterm/ashen.lua @@ -0,0 +1,17 @@ +return { + foreground = "#f5f5f5", + background = "#121212", + + cursor_bg = "#f5f5f5", + cursor_fg = "#121212", + cursor_border = "#f5f5f5", + + selection_fg = "#f5f5f5", + selection_bg = "#1d1d1d", + + scrollbar_thumb = "#121212", + split = "#121212", + + ansi = { "#121212", "#B14242", "#D87C4A", "#E49A44", "#4A8B8B", "#a7a7a7", "#b4b4b4", "#d5d5d5" }, + brights = { "#949494", "#B14242", "#D87C4A", "#E49A44", "#4A8B8B", "#a7a7a7", "#b4b4b4", "#d5d5d5" }, +} diff --git a/config/wezterm/wezterm.lua b/config/wezterm/wezterm.lua new file mode 100644 index 0000000..2e0287f --- /dev/null +++ b/config/wezterm/wezterm.lua @@ -0,0 +1,22 @@ +local wezterm = require 'wezterm' +local config = {} + +config.animation_fps = 60 +config.use_fancy_tab_bar = false +config.tab_bar_at_bottom = true + +config.font = wezterm.font("Comic Code Ligatures") +config.font_size = 25 +config.freetype_load_target = "Light" +config.default_cursor_style = "BlinkingBlock" + +config.colors = require("ashen") +config.window_padding = { + left = 20, + right = 20, + top = 0, + bottom = 0, +} + + +return config