fix: fix input config

This commit is contained in:
2026-05-30 17:48:21 -04:00
parent 81a9d52938
commit c4fbd94891
+9 -1
View File
@@ -1,5 +1,6 @@
local M = {}
local settings = require("lua.lib.settings")
local utils = require("lua.lib.utils")
M.confs = {
input = { touchpad = {} },
@@ -19,7 +20,14 @@ elseif settings["profile"] == "laptop" then
}
end
M.confs.input.touchpad.natural_scroll = settings["touchpad_natural_scroll"]
--M.confs.input.touchpad.natural_scroll = settings["touchpad_natural_scroll"]
M.confs = utils.tbl_recursive_merge(M.confs, {
input = {
touchpad = {
natural_scroll = settings["touchpad_natural_scroll"],
},
},
})
M.confs.input.kb_layout = settings["kb_layout"]