move to backup

This commit is contained in:
Dennis 2026-03-03 10:46:08 +01:00
parent 294dc66380
commit a0e3d792a9
182 changed files with 156 additions and 103 deletions

View file

@ -1,21 +0,0 @@
local wezterm = require("wezterm")
local helpers = require("helpers")
local theme = require("theme")
local M = {}
function M.apply_to_config(config)
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"
config.window_padding = helpers.get_padding(20, 15)
config.window_background_opacity = 0.97
config.macos_window_background_blur = 30
config.command_palette_font_size = 19
end
return M