-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
86 lines (86 loc) · 2.86 KB
/
settings.json
File metadata and controls
86 lines (86 loc) · 2.86 KB
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
{
"editor.inlineSuggest.enabled": true,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.fontFamily": "SFMono Nerd Font",
"editor.fontLigatures": true,
"editor.suggest.preview": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"[html]": {
"editor.matchBrackets": "never"
},
"[css]": {
"editor.matchBrackets": "never"
},
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"editor.fontSize": 16,
"git.ignoreMissingGitWarning": true,
"editor.mouseWheelZoom": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html"
},
"emmet.triggerExpansionOnTab": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.alwaysShowStatus": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.suggestSelection": "first",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.shellIntegration.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true,
"javascript": true,
"java": true
},
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontFamily": "SFMono Nerd Font",
"terminal.integrated.fontSize": 16,
"gitlens.defaultDateLocale": null,
"git.enableSmartCommit": true,
"prettier.bracketSameLine": false,
"editor.formatOnPaste": true,
"markdown.math.enabled": false,
"editor.linkedEditing": true,
"scss.lint.unknownAtRules": "ignore",
"editor.cursorBlinking": "expand",
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"git.autofetch": true,
"css.lint.unknownAtRules": "ignore",
"githubPullRequests.pullBranch": "never",
"terminal.integrated.gpuAcceleration": "off",
"catppuccin.accentColor": "green",
"turboConsoleLog.includeFileNameAndLineNum": false,
"settingsSync.ignoredExtensions": [],
"workbench.colorCustomizations": {},
"catppuccin.colorOverrides": {},
"catppuccin.workbenchMode": "flat",
"github.copilot.advanced": {},
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": false,
"editor.scrollbar.verticalScrollbarSize": 8,
"editor.scrollbar.horizontalScrollbarSize": 8,
"vscode_custom_css.imports": [
"file:///home/hongducdev/Documents/Code/custom-vscode.css"
],
"workbench.productIconTheme": "fluent-icons",
"files.autoSave": "afterDelay",
"workbench.colorTheme": "Catppuccin Mocha",
"explorer.compactFolders": false,
"cSpell.language": "en,vi",
"workbench.iconTheme": "catppuccin-perfect-mocha",
"workbench.startupEditor": "none"
}