diff --git a/gitconfig/config.lua b/gitconfig/config.lua new file mode 100644 index 0000000..ad28ca7 --- /dev/null +++ b/gitconfig/config.lua @@ -0,0 +1,18 @@ +---@class SigilConfig +---@field target table +---@field ignore? string[] + +---@type SigilConfig +local config = { + target = { + linux = "~", + default = "~", + }, + ignore = { + -- "**/.DS_Store", + -- "**/*.tmp", + -- "cache/**", + }, +} + +return config diff --git a/gitconfig/files/.gitconfig b/gitconfig/files/.gitconfig new file mode 100644 index 0000000..f43962c --- /dev/null +++ b/gitconfig/files/.gitconfig @@ -0,0 +1,7 @@ +[user] + name = Thomas G. Lopes + email = thomasgl@pm.me +[pull] + rebase = true +[init] + defaultBranch = main