3
3
"editor.bracketPairColorization.enabled" : true ,
4
4
"editor.codeLens" : true ,
5
5
"editor.colorDecorators" : true ,
6
- "editor.confirmDragAndDrop" : false ,
7
6
"editor.cursorBlinking" : " smooth" ,
8
7
"editor.cursorSmoothCaretAnimation" : " on" ,
8
+ "editor.codeActionsOnSave" : {
9
+ "source.fixAll.shellcheck" : " explicit" ,
10
+ "source.fixAll.eslint" : " explicit"
11
+ },
9
12
"editor.fontFamily" : " 'FantasqueSansM Nerd Font', 'JetBrainsMono Nerd Font'" ,
10
13
"editor.fontLigatures" : true ,
11
14
"editor.fontSize" : 14 ,
61
64
"terminal.integrated.cursorStyle" : " line" ,
62
65
"terminal.integrated.cursorStyleInactive" : " line" ,
63
66
"terminal.integrated.cursorWidth" : 1 ,
64
- "terminal.integrated.enableMultiLinePasteWarning" : false ,
67
+ "terminal.integrated.enableMultiLinePasteWarning" : " auto " ,
65
68
"terminal.integrated.enableVisualBell" : true ,
66
69
"terminal.integrated.minimumContrastRatio" : 1 ,
67
70
"terminal.integrated.shellIntegration.decorationsEnabled" : " never" ,
94
97
"sideBar.background" : " base" ,
95
98
"sideBar.border" : " base" ,
96
99
"sideBarSectionHeader.background" : " base" ,
97
- "sideBarTitle.background" : " base" ,
98
100
"tab.inactiveBackground" : " base" ,
99
101
"tab.unfocusedActiveBackground" : " base" ,
100
102
"tab.unfocusedInactiveBackground" : " base"
121
123
"code-runner.ignoreSelection" : true ,
122
124
"code-runner.saveFileBeforeRun" : true ,
123
125
"code-runner.showExecutionMessage" : false ,
126
+ // polacode settings
127
+ "polacode.transparentBackground" : true ,
128
+ // tabnine
129
+ "tabnine.experimentalAutoImports" : true ,
130
+ // shellcheck
131
+ "shellcheck.enable" : true ,
132
+ "shellcheck.enableQuickFix" : true ,
133
+ "shellcheck.useWorkspaceRootAsCwd" : true ,
134
+ // prettier
135
+ "prettier.useTabs" : true ,
136
+ "prettier.useEditorConfig" : true ,
124
137
// better-comments
125
138
"better-comments.tags" : [
126
139
{
169
182
"italic" : true
170
183
}
171
184
],
172
- // polacode settings
173
- "polacode.transparentBackground" : true ,
174
185
// per language settings
175
186
"[json]" : {
176
- "editor.tabWidth" : 2 ,
177
187
"editor.defaultFormatter" : " esbenp.prettier-vscode"
178
188
},
189
+ "[javascript]" : {
190
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
191
+ },
179
192
"[markdown]" : {
180
193
"editor.defaultFormatter" : " esbenp.prettier-vscode"
181
194
},
182
195
"[yaml]" : {
183
- "editor.tabWidth" : 2
196
+ "editor.tabSize" : 2
197
+ },
198
+ "[lua]" : {
199
+ "editor.tabSize" : 2 ,
200
+ "editor.defaultFormatter" : " sumneko.lua"
184
201
},
185
202
"[log]" : {
186
203
"editor.largeFileOptimizations" : false
204
+ },
205
+ "[shellscript]" : {
206
+ "editor.tabSize" : 2 ,
207
+ "editor.defaultFormatter" : " foxundermoon.shell-format"
187
208
}
188
- }
209
+ }
0 commit comments