Skip to content

Commit

Permalink
Add vscode settings file
Browse files Browse the repository at this point in the history
  • Loading branch information
grantcopley committed Nov 22, 2024
1 parent 888e6b1 commit f58bd14
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.vscode

.artifacts/**
.tmp/**

Expand Down
29 changes: 29 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"git.ignoreLimitWarning": true,
"editor.detectIndentation": true,
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#E6B444",
"titleBar.inactiveBackground": "#E6B444",
"titleBar.activeForeground": "#000000",
"titleBar.inactiveForeground": "#000000",
"activityBar.background": "#E6B444",
"activityBar.foreground": "#000000",
"activityBar.inactiveForeground": "#333333"
},
"scm.diffDecorations": "none",
"search.exclude": {
"**/*.git": true,
"**/*.sql": true,
"**/*.zip": true,
"**/coverageReport": true,
"**/tests/captures": true
},
"files.exclude": {
"**/*.git": true,
"**/*.sql": true,
"**/*.zip": true,
"**/coverageReport": true,
"**/tests/captures": true
},
"search.ripgrep.maxThreads": 3
}

0 comments on commit f58bd14

Please sign in to comment.