wezterm config

This commit is contained in:
Hunter 2025-04-13 12:48:44 -04:00
parent c364ffe701
commit f7e9b55da3
Signed by: hst
GPG key ID: 951D8B651E7DE6BE
2 changed files with 39 additions and 0 deletions

17
config/wezterm/ashen.lua Normal file
View file

@ -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" },
}

View file

@ -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