-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode_settings.json
44 lines (44 loc) · 1.26 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
{
"workbench.colorTheme": "Visual Studio Dark",
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"security.workspace.trust.untrustedFiles": "open",
"sorbet.enabled": true,
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB",
"lldb.launch.expressions": "native",
"workbench.editor.enablePreview": false,
"editor.wordWrap": "on",
"window.zoomLevel": 1,
"workbench.startupEditor": "none",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp"
},
"rubyLsp.rubyVersionManager": {
"identifier": "chruby"
},
"rubyLsp.formatter": "rubocop",
"vim.easymotion": true,
"github.copilot.editor.enableAutoCompletions": true,
"explorer.confirmDelete": false,
"sqltools.useNodeRuntime": true,
"[sql]": {
"editor.defaultFormatter": "mtxr.sqltools"
},
"go.toolsManagement.autoUpdate": true,
"git.openRepositoryInParentFolders": "never",
"[go]": {
"editor.defaultFormatter": "golang.go"
}
}