Avoid transient Hyprland binding module errors

This commit is contained in:
Ryan Hughes
2026-06-16 01:27:43 -04:00
parent 2fdc6f0573
commit d63fdd2a23
+3 -2
View File
@@ -1,6 +1,7 @@
-- Omarchy Hyprland setup: helpers, defaults, and current theme overrides. -- Omarchy Hyprland setup: helpers, defaults, and current theme overrides.
require("default.hypr.helpers") require("default.hypr.helpers")
local require_optional = require("default.hypr.require_optional")
-- Use Omarchy defaults, but don't edit these directly. -- Use Omarchy defaults, but don't edit these directly.
require("default.hypr.autostart") require("default.hypr.autostart")
@@ -9,7 +10,7 @@ if _G.omarchy_default_bindings ~= false then
require("default.hypr.bindings.clipboard") require("default.hypr.bindings.clipboard")
require("default.hypr.bindings.tiling-v2") require("default.hypr.bindings.tiling-v2")
require("default.hypr.bindings.utilities") require("default.hypr.bindings.utilities")
require("default.hypr.bindings.applications") require_optional.module("default.hypr.bindings.applications")
end end
require("default.hypr.envs") require("default.hypr.envs")
require("default.hypr.looknfeel") require("default.hypr.looknfeel")
@@ -17,4 +18,4 @@ require("default.hypr.input")
require("default.hypr.windows") require("default.hypr.windows")
-- Current theme overrides. -- Current theme overrides.
require("default.hypr.require_optional").module("omarchy.current.theme.hyprland") require_optional.module("omarchy.current.theme.hyprland")