This commit is contained in:
2026-03-25 13:55:53 +00:00
parent 4d19e7d320
commit d5b4042b06
2 changed files with 35 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
---@class SigilConfig
---@field target table<string, string|boolean>
---@field ignore? string[]
---@type SigilConfig
local config = {
target = {
linux = "~/.config/gsf",
default = "~/.config/gsf",
},
ignore = {
-- "**/.DS_Store",
-- "**/*.tmp",
-- "cache/**",
},
}
return config