-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
103 lines (103 loc) · 3.46 KB
/
vscode-settings.json
File metadata and controls
103 lines (103 loc) · 3.46 KB
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
{
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.rulers": [
100
],
"files.autoSave": "onFocusChange",
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/coverage": true,
"**/log": true,
"**/public/uploads": true
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true
},
"files.trimTrailingWhitespace": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.minimap.showSlider": "always",
"files.insertFinalNewline": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.fontFamily": "Jetbrains Mono",
"breadcrumbs.enabled": true,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"editor.smoothScrolling": true,
"terminal.integrated.scrollback": 10000,
"scm.defaultViewMode": "tree",
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.explorerKind": "external",
"terminal.external.osxExec": "iTerm.app",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"emmet.triggerExpansionOnTab": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.accessibilitySupport": "off",
"terminal.integrated.defaultProfile.osx": "zsh",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.formatOnType": true
},
"workbench.iconTheme": "eq-material-theme-icons-darker",
"editor.unicodeHighlight.ambiguousCharacters": false,
"files.associations": {
".eslintrc": "plaintext",
"*.heex": "html-eex",
"*.eex": "html-eex"
},
"editor.inlineSuggest.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.stickyScroll.enabled": true,
"workbench.tree.enableStickyScroll": true,
"window.confirmBeforeClose": "keyboardOnly",
"errorLens.excludeBySource": [
"RuboCop(Layout/MultilineMethodCallIndentation)"
],
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#0078D4"
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.rulers": [
120
],
"editor.semanticHighlighting.enabled": true
},
"workbench.activityBar.location": "top",
"workbench.colorTheme": "Gruvbox Dark Hard",
"editor.inlineSuggest.suppressSuggestions": true,
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"workbench.panel.showLabels": false,
"docker.extension.enableComposeLanguageServer": false,
"remote.autoForwardPortsSource": "hybrid"
}