Skip to content

Commit 02f55f9

Browse files
saving vscode settings
1 parent c80efe3 commit 02f55f9

File tree

1 file changed

+36
-62
lines changed

1 file changed

+36
-62
lines changed

env/bill/settings.json

Lines changed: 36 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
"go.goroot": "/usr/local/go",
33
"go.gopath": "/Users/bill/code/go",
44
"go.addTags": {},
5-
"go.alternateTools": {
6-
},
5+
"go.alternateTools": {},
76
"go.toolsManagement.autoUpdate": true,
87
"go.useLanguageServer": true,
8+
"go.coverOnTestPackage": false,
9+
"go.lintFlags": [
10+
"-checks=all"
11+
],
912
"[go]": {
1013
"editor.snippetSuggestions": "none",
1114
"editor.formatOnSave": true,
1215
"editor.codeActionsOnSave": {
13-
"source.organizeImports": true
16+
"source.organizeImports": "explicit"
1417
},
1518
"editor.codeLens": false
1619
},
@@ -23,11 +26,25 @@
2326
//"gc_details": true,
2427
}
2528
},
26-
"go.lintFlags": [
27-
"-checks=all"
28-
],
2929

30-
"editor.lightbulb.enabled": false,
30+
"workbench.tree.enableStickyScroll": false,
31+
"workbench.colorTheme": "Zenburn",
32+
"workbench.editorAssociations": {
33+
"*.a": "hexEditor.hexedit"
34+
},
35+
"workbench.colorCustomizations": {
36+
"[Zenburn]": {
37+
"editorBracketHighlight.foreground1": "#f6f8f7c9",
38+
"editorBracketHighlight.foreground2": "#f6f8f7c9",
39+
"editorBracketHighlight.foreground3": "#f6f8f7c9",
40+
"editorBracketHighlight.foreground4": "#f6f8f7c9",
41+
"editorBracketHighlight.foreground5": "#f6f8f7c9",
42+
"editorBracketHighlight.foreground6": "#f6f8f7c9",
43+
"editorBracketHighlight.unexpectedBracket.foreground": "#f6f8f7c9"
44+
},
45+
},
46+
47+
"editor.lightbulb.enabled": "off",
3148
"editor.fontSize": 14,
3249
"editor.formatOnType": true,
3350
"editor.mouseWheelZoom": false,
@@ -38,6 +55,10 @@
3855
"editor.wordWrap": "off",
3956
"editor.guides.indentation": false,
4057
"editor.renderWhitespace": "none",
58+
"editor.stickyScroll.enabled": false,
59+
"editor.folding": false,
60+
"editor.detectIndentation": false,
61+
"editor.inlineSuggest.enabled": true,
4162
"editor.tokenColorCustomizations": {
4263
"[Zenburn]": {
4364
"textMateRules": [
@@ -50,18 +71,6 @@
5071
]
5172
}
5273
},
53-
"workbench.colorTheme": "Zenburn",
54-
"workbench.colorCustomizations": {
55-
"[Zenburn]": {
56-
"editorBracketHighlight.foreground1": "#f6f8f7c9",
57-
"editorBracketHighlight.foreground2": "#f6f8f7c9",
58-
"editorBracketHighlight.foreground3": "#f6f8f7c9",
59-
"editorBracketHighlight.foreground4": "#f6f8f7c9",
60-
"editorBracketHighlight.foreground5": "#f6f8f7c9",
61-
"editorBracketHighlight.foreground6": "#f6f8f7c9",
62-
"editorBracketHighlight.unexpectedBracket.foreground": "#f6f8f7c9"
63-
},
64-
},
6574

6675
"files.exclude": {
6776
"**/.git": true,
@@ -74,53 +83,18 @@
7483
},
7584
"files.trimTrailingWhitespace": false,
7685

77-
"extensions.ignoreRecommendations": true,
86+
"explorer.compactFolders": false,
87+
"explorer.confirmDragAndDrop": false,
88+
89+
"window.newWindowDimensions": "maximized",
90+
"window.zoomLevel": 1,
91+
7892
"liveshare.featureSet": "insiders",
79-
"go.coverOnTestPackage": false,
8093
"liveshare.anonymousGuestApproval": "accept",
81-
"editor.folding": false,
82-
"explorer.compactFolders": false,
94+
95+
"extensions.ignoreRecommendations": true,
8396
"diffEditor.ignoreTrimWhitespace": false,
8497
"terminal.integrated.tabs.enabled": true,
8598
"testing.gutterEnabled": false,
8699
"security.workspace.trust.untrustedFiles": "open",
87-
"window.newWindowDimensions": "maximized",
88-
"editor.detectIndentation": false,
89-
90-
"[rust]": {
91-
"editor.defaultFormatter": "rust-lang.rust-analyzer",
92-
"editor.formatOnSave": true
93-
},
94-
95-
"rust-analyzer.highlightRelated.breakPoints.enable": false,
96-
"rust-analyzer.highlightRelated.exitPoints.enable": false,
97-
"rust-analyzer.highlightRelated.references.enable": false,
98-
"rust-analyzer.highlightRelated.yieldPoints.enable": false,
99-
"rust-analyzer.hover.actions.debug.enable": false,
100-
"rust-analyzer.hover.actions.enable": false,
101-
"rust-analyzer.hover.actions.gotoTypeDef.enable": false,
102-
"rust-analyzer.hover.actions.implementations.enable": false,
103-
"rust-analyzer.hover.actions.run.enable": false,
104-
"rust-analyzer.hover.links.enable": false,
105-
"rust-analyzer.imports.group.enable": false,
106-
"rust-analyzer.inlayHints.chainingHints.enable": false,
107-
"rust-analyzer.inlayHints.closingBraceHints.enable": false,
108-
"rust-analyzer.inlayHints.parameterHints.enable": false,
109-
"rust-analyzer.inlayHints.renderColons": false,
110-
"rust-analyzer.inlayHints.typeHints.enable": false,
111-
"rust-analyzer.joinLines.joinAssignments": false,
112-
"rust-analyzer.joinLines.joinElseIf": false,
113-
"rust-analyzer.joinLines.removeTrailingComma": false,
114-
"rust-analyzer.joinLines.unwrapTrivialBlock": false,
115-
"rust-analyzer.lens.debug.enable": false,
116-
"rust-analyzer.lens.enable": false,
117-
"rust-analyzer.lens.forceCustomCommands": false,
118-
"rust-analyzer.lens.implementations.enable": false,
119-
"rust-analyzer.lens.run.enable": false,
120-
"rust-analyzer.semanticHighlighting.doc.comment.inject.enable": false,
121-
"rust-analyzer.semanticHighlighting.operator.enable": false,
122-
"rust-analyzer.semanticHighlighting.strings.enable": false,
123-
"editor.inlineSuggest.enabled": true,
124-
"explorer.confirmDragAndDrop": false,
125-
"window.zoomLevel": 1,
126100
}

0 commit comments

Comments
 (0)