This commit is contained in:
2026-03-10 19:33:29 +00:00
parent d389bf9276
commit e0cfb204bb
3 changed files with 40 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
---@class SigilConfig
---@field target table<string, string|boolean>
---@field ignore? string[]
---@type SigilConfig
local config = {
target = {
linux = "~/.config/mpv",
darwin = "~/.config/mpv",
default = "~/.config/mpv",
},
ignore = {},
}
return config