Dotfyle reports `leaderkey: unknown` for my config even though I explicitly set a backslash leader at the top of my `init.lua.` ```lua vim.g.mapleader = "\\" ``` It looks like the findLeaderKey() function in [src/lib/server/nvim-sync/config/NeovimConfigSyncer.ts](https://github.com/codicocodes/dotfyle/blob/eecf0bee398d20f4ad2474b28d5ef57883725c79/src/lib/server/nvim-sync/config/NeovimConfigSyncer.ts#L133-L135) has a small escaping bug in the switch statement. Proposed fix: ```lua - case '"\\"': - case "'\\'": + case '"\\\\"': + case "'\\\\'": return '\\'; ``` These string literals only contain a single backslash, but the raw text from a Lua file with `vim.g.mapleader = "\\"` should be escaped as `\\\\`.