-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
70 lines (70 loc) · 2.29 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
{
"workbench.colorTheme": "Aura Dark (Soft Text)",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": true,
"html": true,
"python": true
},
"workbench.iconTheme": "material-icon-theme",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.associations": {
"*.py": "python"
},
"liveServer.settings.donotVerifyTags": true,
"terminal.integrated.commandsToSkipShell": [
"\"terminal.integrated.shellArgs.windows\": [\"-ExecutionPolicy\", \"Bypass\"]"
],
"liveServer.settings.donotShowInfoMsg": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"tailwindCSS.emmetCompletions": true,
"emmet.triggerExpansionOnTab": true,
"vetur.experimental.templateInterpolationService": true,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"push:command",
"switch:command"
],
"diffEditor.ignoreTrimWhitespace": false,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"sonarlint.ls.javaHome": "c:\\Users\\hello\\.vscode\\extensions\\sonarsource.sonarlint_managed-jre\\jre\\jdk-11.0.13+8-jre",
"sonarlint.rules": {
"javascript:S1117": {
"level": "off"
}
},
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.splitInGroupLayout": "vertical",
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"tabnine.experimentalAutoImports": true,
"workbench.preferredDarkColorTheme": "Abyss",
"window.autoDetectColorScheme": true,
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["Esc"]
}
],
}