22 lines
422 B
Lua
22 lines
422 B
Lua
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
|