diff options
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index afee20aa..0a19bb04 100644 --- a/languages.toml +++ b/languages.toml @@ -545,3 +545,13 @@ scope = "source.regex" injection-regex = "regex" file-types = ["regex"] roots = [] + +[[language]] +name = "git-config" +scope = "source.gitconfig" +roots = [] +# TODO: allow specifying file-types as a regex so we can read directory names (e.g. `.git/config`) +file-types = [".gitmodules", ".gitconfig"] +injection-regex = "git-config" +comment-token = "#" +indent = { tab-width = 4, unit = "\t" } |