From c4fbd94891841d63d2851b9f03668f4ac7754a55 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sat, 30 May 2026 17:48:21 -0400 Subject: [PATCH] fix: fix input config --- lua/conf/input.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/conf/input.lua b/lua/conf/input.lua index b0fd0c8..98b6a43 100644 --- a/lua/conf/input.lua +++ b/lua/conf/input.lua @@ -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"]