-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
161 lines (161 loc) · 3.73 KB
/
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
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
{
"[css]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "eeyore.yapf",
"editor.formatOnType": true
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[svg]": {
"editor.defaultFormatter": "jock.svg"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cloudcode.duetAI.inlineSuggestions.enableAuto": false,
"debug.console.fontSize": 16,
"diffEditor.hideUnchangedRegions.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.useInlineViewWhenSpaceIsLimited": false,
"editor.bracketPairColorization.enabled": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnPaste": true,
"editor.guides.bracketPairs": true,
"editor.lineHeight": 2,
"editor.lineNumbers": "relative",
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "boundary",
"editor.rulers": [
80
],
"editor.scrollBeyondLastLine": false,
"editor.snippetSuggestions": "top",
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.trimAutoWhitespace": true,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact",
"nunjucks": "html",
"jinja": "html"
},
"explorer.openEditors.visible": 1,
"files.associations": {
"*.jinja": "jinja"
},
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.mergeEditor": false,
"gitlens.keymap": "alternate",
"gitlens.views.commitDetails.files.layout": "tree",
"js/ts.implicitProjectConfig.checkJs": true,
"markdown.preview.fontSize": 16,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"outline.showKeys": false,
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.languageServer": "Pylance",
"redhat.telemetry.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"stylelint.validate": [
"css",
"scss"
],
"terminal.integrated.fontSize": 16,
"vim.digraphs": {},
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"vim.insertModeKeyBindings": [
{
"after": [
"<Esc>"
],
"before": [
"j",
"j"
]
}
],
"vim.leader": ",",
"vim.normalModeKeyBindingsNonRecursive": [
{
"after": [
"d",
"d"
],
"before": [
"<leader>",
"d"
]
},
{
"before": [
"Z",
"Z"
],
"commands": [
":wq"
]
},
{
"before": [
"leader",
"w"
],
"commands": [
"workbench.action.files.save"
]
}
],
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.zoomLevel": 1,
"workbench.colorTheme": "One Dark Pro",
"workbench.editor.empty.hint": "hidden",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"workbench.iconTheme": "vscode-icons",
"zenMode.centerLayout": false,
"zenMode.fullScreen": false,
"zenMode.hideLineNumbers": false,
"zenMode.restore": true,
"zenMode.silentNotifications": false
}