-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode_settings.json
32 lines (32 loc) · 979 Bytes
/
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
{
"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": "chruby",
"rubyLsp.formatter": "rubocop",
"vim.easymotion": true,
"github.copilot.editor.enableAutoCompletions": true
}