21 lines
604 B
Lua
21 lines
604 B
Lua
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
|