Files
dotfiles/DankMaterialShell/config.lua
T
2026-03-09 02:50:31 +00:00

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