summaryrefslogtreecommitdiff
path: root/profiles/main/data/settings.json
blob: 1a032d15d5be4a246f45ae0fcd868e6734cb45f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
    "[css]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[go]": {
        "editor.codeActionsOnSave": {
            "source.organizeImports": "explicit",
            "source.fixAll": "explicit"
        },
        "breadcrumbs.showEnums": true,
        "editor.defaultFormatter": "golang.go",
        "editor.formatOnSave": true
    },
    "[html]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascriptreact]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[json]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[jsonc]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "debug.allowBreakpointsEverywhere": true,
    "debug.autoExpandLazyVariables": "on",
    "debug.console.fontFamily": "'Fira Code Retina','Droid Sans Mono', 'monospace', monospace",
    "debug.console.fontSize": 11,
    "debug.console.lineHeight": 14,
    "debug.internalConsoleOptions": "openOnSessionStart",
    "debug.openDebug": "openOnSessionStart",
    "debug.showBreakpointsInOverviewRuler": true,
    "debug.toolBarLocation": "docked",
    "diffEditor.codeLens": true,
    "diffEditor.wordWrap": "off",
    "editor.fontFamily": "'FiraCode Nerd Font', 'monospace', monospace",
    "editor.fontLigatures": true,
    "editor.fontSize": 12,
    "editor.gotoLocation.alternativeDeclarationCommand": "editor.action.goToImplementation",
    "editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToImplementation",
    "editor.gotoLocation.alternativeImplementationCommand": "editor.action.goToImplementation",
    "editor.gotoLocation.alternativeReferenceCommand": "editor.action.goToImplementation",
    "editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToImplementation",
    "editor.gotoLocation.multipleDeclarations": "gotoAndPeek",
    "editor.gotoLocation.multipleDefinitions": "gotoAndPeek",
    "editor.gotoLocation.multipleImplementations": "gotoAndPeek",
    "editor.gotoLocation.multipleReferences": "gotoAndPeek",
    "editor.gotoLocation.multipleTypeDefinitions": "gotoAndPeek",
    "editor.guides.bracketPairs": false,
    "editor.guides.indentation": false,
    "editor.inlayHints.enabled": "on",
    "editor.inlayHints.fontSize": 10,
    "editor.inlayHints.padding": true,
    "editor.inlineSuggest.showToolbar": "always",
    "editor.largeFileOptimizations": false,
    "editor.lineHeight": 1.4,
    "editor.minimap.renderCharacters": false,
    "editor.minimap.showSlider": "always",
    "editor.renderLineHighlight": "all",
    "editor.renderWhitespace": "boundary",
    "editor.rulers": [80, 120],
    "editor.suggest.showStructs": true,
    "editor.suggest.showWords": false,
    "editor.unicodeHighlight.nonBasicASCII": false,
    "editor.wordWrap": "off",
    "explorer.fileNesting.enabled": true,
    "explorer.fileNesting.patterns": {
        "*.go": "${capture}_gen.go,${capture}.gen.go",
        "*.templ": "${capture}_templ.go,${capture}_templ.txt",
        "go.mod": "go.sum"
    },
    "files.autoGuessEncoding": true,
    "files.autoSave": "onFocusChange",
    "files.exclude": {
        "node_modules": true
    },
    "files.simpleDialog.enable": true,
    "git.openRepositoryInParentFolders": "never",
    "go.enableCodeLens": {
        "runtest": true
    },
    "go.inlayHints.compositeLiteralFields": true,
    "go.inlayHints.compositeLiteralTypes": true,
    "go.inlayHints.constantValues": true,
    "go.inlayHints.functionTypeParameters": true,
    "go.inlayHints.parameterNames": true,
    "go.inlayHints.rangeVariableTypes": true,
    "go.lintTool": "golangci-lint",
    "go.lintFlags": ["--fast"],
    "go.lintOnSave": "package",
    "go.toolsManagement.autoUpdate": true,
    "gopls": {
        "formatting.local": "golang.go",
        "formatting.gofumpt": true,
        "ui.codelenses": {
            "generate": true,
            "test": false,
            "tidy": true,
            "upgrade_dependency": true
        },
        "ui.completion.experimentalPostfixCompletions": true,
        "ui.diagnostic.staticcheck": true,
        "ui.documentation.linksInHover": true,
        "ui.navigation.importShortcut": "Definition",
        "ui.semanticTokens": true,
        "ui.completion.completeFunctionCalls": true
    },
    "makefile.phonyOnlyTargets": true,
    "notebook.output.scrolling": true,
    "prettier.tabWidth": 4,
    "pymakr.devices.configs": {
        "123456": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        },
        "serial:///dev/ttyS0": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        },
        "serial:///dev/ttyS1": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        },
        "serial:///dev/ttyS2": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        },
        "serial:///dev/ttyS3": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        },
        "serial:///dev/ttyUSB0": {
            "adapterOptions": {},
            "autoConnect": "onLostConnection",
            "hidden": false,
            "name": "",
            "password": "python",
            "rootPath": null,
            "username": "micro"
        }
    },
    "pymakr.misc.notifications": {
        "ttyACM0 / unknown seems to be busy. Do you wish restart it in safe mode": "No and don't ask again"
    },
    "python.envFile": "${workspaceFolder}/env",
    "python.languageServer": "Jedi",
    "redhat.telemetry.enabled": false,
    "rest-client.defaultHeaders": {
        "User-Agent": "vscode-restclient"
    },
    "search.showLineNumbers": true,
    "security.workspace.trust.startupPrompt": "never",
    "terminal.integrated.defaultProfile.linux": "zsh",
    "terminal.integrated.fontFamily": "monospace",
    "terminal.integrated.fontSize": 11,
    "terminal.integrated.gpuAcceleration": "auto",
    "terminal.integrated.hideOnStartup": "whenEmpty",
    "terminal.integrated.lineHeight": 1.4,
    "terminal.integrated.minimumContrastRatio": 2.5,
    "window.autoDetectColorScheme": true,
    "window.titleBarStyle": "custom",
    "workbench.colorCustomizations": {
        "editorWhitespace.foreground": "#a3a33a",
        "[Atom One Light]": {
            "activityBar.background": "#e0e0e0",
            "activityBar.border": "#c5c5c5",
            "titleBar.activeBackground": "#475057",
            "titleBar.activeForeground": "#fff",
            "titleBar.inactiveBackground": "#475057",
            "titleBar.inactiveForeground": "#fff",
            "menubar.selectionForeground": "#fff",
            "titleBar.border": "#3c444a",
            "sideBar.border": "#d4d4d8"
        }
    },
    "editor.semanticHighlighting.enabled": false,
    "workbench.startupEditor": "none",
    "workbench.tips.enabled": false,
    "explorer.fileNesting.expand": false,
    "go.addTags": {
        "promptForTags": true
    },
    "go.removeTags": {
        "promptForTags": true
    },
    "[templ]": {
        "editor.defaultFormatter": "a-h.templ"
    },
    "workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-auto",
    "workbench.productIconTheme": "icons-carbon",
    "[yaml]": {
        "editor.defaultFormatter": "redhat.vscode-yaml"
    },
    "[typescript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "workbench.preferredLightColorTheme": "Atom One Light",
    "workbench.preferredDarkColorTheme": "Atom One Dark"
}