mirror of
https://github.com/sharkdp/bat.git
synced 2025-03-26 12:38:44 +00:00
11 lines
409 B
TOML
11 lines
409 B
TOML
# Global git config files rooted in `$XDG_CONFIG_HOME/git/` or `$HOME/.config/git/`
|
|
# See e.g. https://git-scm.com/docs/git-config#FILES
|
|
|
|
[mappings]
|
|
"Git Config" = ["${XDG_CONFIG_HOME}/git/config", "${HOME}/.config/git/config"]
|
|
"Git Ignore" = ["${XDG_CONFIG_HOME}/git/ignore", "${HOME}/.config/git/ignore"]
|
|
"Git Attributes" = [
|
|
"${XDG_CONFIG_HOME}/git/attributes",
|
|
"${HOME}/.config/git/attributes",
|
|
]
|