-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.json
61 lines (53 loc) · 1.54 KB
/
vscode.settings.json
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
{
"files.autoSave": "onFocusChange",
"git.confirmSync": false,
"git.autofetch": true,
"ruby.lint": {
"reek": false,
"rubocop": true,
"ruby": true,
"fasterer": true,
"debride": true
},
"ruby.lintDebounceTime": 500,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"workbench.colorTheme": "Catppuccin Mocha",
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.statusBar.visible": true,
"zenMode.hideLineNumbers": false,
"editor.minimap.enabled": false,
"git.suggestSmartCommit": false,
"window.zoomLevel": 1,
"github.copilot.editor.enableAutoCompletions": true,
"terminal.integrated.inheritEnv": false,
"editor.fontFamily": "Hack Nerd Font, Menlo, Monaco, 'Courier New', monospace",
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnType": true,
"editor.wordBasedSuggestions": "off"
},
"elixirLS.suggestSpecs": false,
"elixirLS.dialyzerEnabled": true,
"elixirLS.signatureAfterComplete": false,
"elixirLS.fetchDeps": false,
"files.associations": {
"*.heex": "phoenix-heex"
},
"emmet.includeLanguages": {
"elixir": "html",
"phoenix-heex": "html"
},
"emmet.triggerExpansionOnTab": true,
"[elixir]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
"[phoenix-heex]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "JakeBecker.elixir-ls"
}
}