19 lines
323 B
Lua
19 lines
323 B
Lua
---@class SigilConfig
|
|
---@field target table<string, string|boolean>
|
|
---@field ignore? string[]
|
|
|
|
---@type SigilConfig
|
|
local config = {
|
|
target = {
|
|
linux = "~/.config/DankMaterialShell",
|
|
default = "~/.config/DankMaterialShell",
|
|
},
|
|
ignore = {
|
|
-- "**/.DS_Store",
|
|
-- "**/*.tmp",
|
|
-- "cache/**",
|
|
},
|
|
}
|
|
|
|
return config
|