24 lines
724 B
Lua
24 lines
724 B
Lua
|
|
-- Config is based on the example Hyprland config file provided on the project's repo.
|
||
|
|
-- Refer to the wiki for more information.
|
||
|
|
-- https://wiki.hypr.land/Configuring/Start/
|
||
|
|
|
||
|
|
-- Please note not all available settings / options are set here.
|
||
|
|
-- For a full list, see the wiki
|
||
|
|
|
||
|
|
-- If you want to modify some settings, go to ./config/custom/user.conf and add them
|
||
|
|
-- They'll automatically override the default ones
|
||
|
|
|
||
|
|
-- Default settings
|
||
|
|
require("config.default.environment")
|
||
|
|
require("config.default.input")
|
||
|
|
require("config.default.kb_layouts.fr")
|
||
|
|
require("config.default.appearance")
|
||
|
|
|
||
|
|
-- Desktop mods
|
||
|
|
--require("config.default.minimalist_mod")
|
||
|
|
|
||
|
|
-- Custom settings
|
||
|
|
require("config.custom.user")
|
||
|
|
require("config.custom.plugins")
|
||
|
|
|