Files
dotfiles/gitconfig/config.lua
T
2026-03-11 11:02:23 +00:00

19 lines
271 B
Lua

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