dotfiles/.vscode/settings.json
Andrei Jiroh Halili add93e3ec0
chore(config): update VS Code and git config
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>
2024-08-13 09:07:13 +08:00

43 lines
No EOL
1.2 KiB
JSON

{
"git.alwaysSignOff": true,
"gitlens.remotes": [
{
"domain": "mau.dev",
"type": "GitLab"
},
{
"domain": "tildegit.com",
"type": "Gitea"
},
{
"domain": "git.vern.cc",
"type": "Gitea"
}
],
"gitlens.heatmap.ageThreshold": 60,
"gitlens.views.commitDetails.files.layout": "tree",
"gitlens.views.repositories.includeWorkingTree": true,
"gitlens.views.repositories.showIncomingActivity": true,
"gitlens.views.fileHistory.files.layout": "tree",
"gitlens.autolinks": [
{
"ignoreCase": true,
"prefix": "LAUNCHPAD-",
"url": "https://youtrack.andreijiroh.xyz/issue/LAUNCHPAD-<num>"
}
],
"gitlens.defaultTimeFormat": "HH:mm",
"gitlens.defaultDateShortFormat": "YYYY-MM-D",
"gitlens.defaultDateFormat": "YYYY-MM-D HH:mm",
"shellcheck.customArgs": [
"--external-sources",
"-x"
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.cache/**": true
},
"dotenv.enableAutocloaking": false
}