-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
86 lines (86 loc) · 3.19 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
{
"window.zoomLevel": 0.25,
"workbench.startupEditor": "readme",
"workbench.colorTheme": "GitHub Dark",
"workbench.sideBar.location": "right",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.showTabs": "multiple",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": "true",
"workbench.editorAssociations": {
"*.sqlite3": "default",
"*.db": "sqlite-viewer.option",
"*.md": "vscode.markdown.preview.editor"
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.defaultProfile.linux": "Git Bash",
"terminal.integrated.defaultProfile.osx": "Git Bash",
"breadcrumbs.enabled": true,
"editor.glyphMargin": false,
"editor.minimap.enabled": true,
"editor.minimap.autohide": true,
"editor.scrollbar.vertical": "hidden",
"editor.matchBrackets": "always",
"editor.stickyScroll.enabled": true,
"editor.cursorBlinking": "expand",
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.cursorSmoothCaretAnimation": "on",
"editor.tokenColorCustomizations": {},
"editor.fontFamily": "'Cascadia Code SemiLight', 'Fira Code Regular', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.inlineSuggest.showToolbar": "always",
"editor.accessibilitySupport": "off",
"editor.formatOnType": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"application.experimental.rendererProfiling": false,
"indenticator.width": 0.1,
"indenticator.color.dark": "rgba(204, 204, 204, 0.2)",
"editorconfig.generateAuto": true,
"notebook.formatOnSave.enabled": true,
"security.workspace.trust.untrustedFiles": "open",
"git.enableSmartCommit": true,
// "git.confirmSync": false,
// "git.autofetch": true,
// "git.autofetchPeriod": 3000,
"githubPullRequests.pullBranch": "never",
"prettier.enable": true,
"vs-code-prettier-eslint.prettierLast": false,
"files.autoSave": "onFocusChange",
// LANGUAGES
"files.associations": {
"*.embeddedhtml": "html",
"*.blade.php": "blade",
"*.php": "php",
".env*": "dotenv",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"emmet.includeLanguages": {
"django-html": "html"
},
// API KEYS
"wakatime.apiKey": "YOUR API KEY HERE",
"gptcommit.openAI.apiKey": "YOUR API KEY HERE",
// VENDOR extensions
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"tabnine.experimentalAutoImports": true,
"sftp.debug": true,
"sftp.downloadWhenOpenInRemoteExplorer": true,
"sftp.printDebugLog": true,
"bitoAI.codeCompletion.setAutoCompletionTriggerLogic": 250,
"bitoAI.codeCompletion.enableAutoCompletion": true,
"bitoAI.codeCompletion.enableCommentToCode": true,
"console-ninja.featureSet": "Community",
"liveSassCompile.settings.includeItems": [],
"liveSassCompile.settings.formats": [],
// DICTIONARIES NATURAL LANGUAGE
"cSpell.language": "en, es",
"cSpell.userWords": []
}