local M = {} local colorscheme = require("lua.conf.colorscheme") local settings = require("lua.lib.settings") M.confs = { misc = { disable_hyprland_logo = true, disable_splash_rendering = true, vrr = 3, enable_swallow = true, swallow_regex = "^(kitty|Alacritty)$", background_color = colorscheme.background, font_family = settings["font_family"], }, } function M.load() hl.config(M.confs) end return M