adjust VS Code file associations for template files, chezmoi path style

This commit is contained in:
2024-10-12 14:36:03 -05:00
parent 5259c5fed9
commit e4ffa5b2cf
2 changed files with 20 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
README.md README.md
FAQ.md FAQ.md
.gitattributes .gitattributes
.gitignore
.vscode

17
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"files.associations": {
"dot_*rc": "shellscript",
"dot_*rc.tmpl": "shellscript",
"*.sh.tmpl": "shellscript",
".chezmoiignore": "ignore",
"*.nu.tmpl": "nushell",
"*.json.tmpl": "json",
"*.toml.tmpl": "toml",
"*.yaml.tmpl": "yaml",
"*.cfg.tmpl": "ini",
"*bash_aliases*": "shellscript",
"*dot_profile*": "shellscript",
"*dot_gitconfig*": "ini",
}
}