Skip to content

Commit b114e98

Browse files
committed
🐛 fix: fixed unknown settings & added extensions' settings
1 parent d1a8cd0 commit b114e98

File tree

1 file changed

+29
-8
lines changed

1 file changed

+29
-8
lines changed

vscode/settings.json

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
"editor.bracketPairColorization.enabled": true,
44
"editor.codeLens": true,
55
"editor.colorDecorators": true,
6-
"editor.confirmDragAndDrop": false,
76
"editor.cursorBlinking": "smooth",
87
"editor.cursorSmoothCaretAnimation": "on",
8+
"editor.codeActionsOnSave": {
9+
"source.fixAll.shellcheck": "explicit",
10+
"source.fixAll.eslint": "explicit"
11+
},
912
"editor.fontFamily": "'FantasqueSansM Nerd Font', 'JetBrainsMono Nerd Font'",
1013
"editor.fontLigatures": true,
1114
"editor.fontSize": 14,
@@ -61,7 +64,7 @@
6164
"terminal.integrated.cursorStyle": "line",
6265
"terminal.integrated.cursorStyleInactive": "line",
6366
"terminal.integrated.cursorWidth": 1,
64-
"terminal.integrated.enableMultiLinePasteWarning": false,
67+
"terminal.integrated.enableMultiLinePasteWarning": "auto",
6568
"terminal.integrated.enableVisualBell": true,
6669
"terminal.integrated.minimumContrastRatio": 1,
6770
"terminal.integrated.shellIntegration.decorationsEnabled": "never",
@@ -94,7 +97,6 @@
9497
"sideBar.background": "base",
9598
"sideBar.border": "base",
9699
"sideBarSectionHeader.background": "base",
97-
"sideBarTitle.background": "base",
98100
"tab.inactiveBackground": "base",
99101
"tab.unfocusedActiveBackground": "base",
100102
"tab.unfocusedInactiveBackground": "base"
@@ -121,6 +123,17 @@
121123
"code-runner.ignoreSelection": true,
122124
"code-runner.saveFileBeforeRun": true,
123125
"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,
124137
// better-comments
125138
"better-comments.tags": [
126139
{
@@ -169,20 +182,28 @@
169182
"italic": true
170183
}
171184
],
172-
// polacode settings
173-
"polacode.transparentBackground": true,
174185
// per language settings
175186
"[json]": {
176-
"editor.tabWidth": 2,
177187
"editor.defaultFormatter": "esbenp.prettier-vscode"
178188
},
189+
"[javascript]": {
190+
"editor.defaultFormatter": "esbenp.prettier-vscode",
191+
},
179192
"[markdown]": {
180193
"editor.defaultFormatter": "esbenp.prettier-vscode"
181194
},
182195
"[yaml]": {
183-
"editor.tabWidth": 2
196+
"editor.tabSize": 2
197+
},
198+
"[lua]": {
199+
"editor.tabSize": 2,
200+
"editor.defaultFormatter": "sumneko.lua"
184201
},
185202
"[log]": {
186203
"editor.largeFileOptimizations": false
204+
},
205+
"[shellscript]": {
206+
"editor.tabSize": 2,
207+
"editor.defaultFormatter": "foxundermoon.shell-format"
187208
}
188-
}
209+
}

0 commit comments

Comments
 (0)