Skip to content

Commit f58bd14

Browse files
committed
Add vscode settings file
1 parent 888e6b1 commit f58bd14

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.vscode
2-
31
.artifacts/**
42
.tmp/**
53

.vscode/settings.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"git.ignoreLimitWarning": true,
3+
"editor.detectIndentation": true,
4+
"workbench.colorCustomizations": {
5+
"titleBar.activeBackground": "#E6B444",
6+
"titleBar.inactiveBackground": "#E6B444",
7+
"titleBar.activeForeground": "#000000",
8+
"titleBar.inactiveForeground": "#000000",
9+
"activityBar.background": "#E6B444",
10+
"activityBar.foreground": "#000000",
11+
"activityBar.inactiveForeground": "#333333"
12+
},
13+
"scm.diffDecorations": "none",
14+
"search.exclude": {
15+
"**/*.git": true,
16+
"**/*.sql": true,
17+
"**/*.zip": true,
18+
"**/coverageReport": true,
19+
"**/tests/captures": true
20+
},
21+
"files.exclude": {
22+
"**/*.git": true,
23+
"**/*.sql": true,
24+
"**/*.zip": true,
25+
"**/coverageReport": true,
26+
"**/tests/captures": true
27+
},
28+
"search.ripgrep.maxThreads": 3
29+
}

0 commit comments

Comments
 (0)