implements custom wezterm scheme

This commit is contained in:
Dennis Schoepf 2025-11-03 10:42:55 +01:00
parent 2c80558d2e
commit 0827a2984a
4 changed files with 91 additions and 15 deletions

View file

@ -1,10 +1,14 @@
local wezterm = require("wezterm")
local helpers = require("helpers")
local theme = require("theme")
local M = {}
function M.apply_to_config(config)
config.color_scheme = "Modus-Vivendi-Tinted"
config.color_schemes = {
["dnsc"] = theme.colors,
}
config.color_scheme = "dnsc"
config.font = wezterm.font("VictorMono Nerd Font", { weight = "DemiBold", stretch = "Normal", style = "Normal" })
config.font_size = 18.5
config.window_decorations = "RESIZE"