-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
147 lines (132 loc) · 4.11 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
// Git
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:menu"
],
"git.enableSmartCommit": true,
"git.confirmSync": false,
// Git Copilot
"github.copilot.advanced": {
"indentationMode": {
"python": false,
"javascript": false,
"javascriptreact": false,
"jsx": false,
"typescript": false,
"typescriptreact": false,
"go": false,
"ruby": false,
"*": true
}
},
// Theme
"synthwave84.brightness": 1,
"workbench.colorTheme": "Monokai Pro (Filter Octagon)",
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "icons-carbon",
// Doki theme
"doki.wallpaper.path": "C:/Users/pedvd/Downloads/vavabg 1.png",
"doki.background.path": "C:/Users/pedvd/Downloads/vavabg 1.png",
"doki.background.anchor": "center",
"doki.sticker.path": "C:/Users/pedvd/Downloads/tanjiro2.gif",
// Terminal
"terminal.integrated.fontFamily": "Jetbrains mono",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.gpuAcceleration": "off",
// Font
"editor.fontFamily": "Jetbrains mono",
"editor.codeLensFontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.lineHeight": 32,
"editor.letterSpacing": 0.5,
"errorLens.fontStyleItalic": true,
// Identation
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.minimap.maxColumn": 60,
"editor.wordWrapColumn": 120,
"workbench.tree.indent": 16,
"editor.inlineSuggest.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.guides.bracketPairs": true,
"diffEditor.wordWrap": "off",
"diffEditor.ignoreTrimWhitespace": false,
// Animation and Design
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": true,
"workbench.list.smoothScrolling": true,
"editor.fontLigatures": false,
"editor.mouseWheelZoom": true,
"editor.renderWhitespace": "none",
"editor.renderLineHighlight": "gutter",
"editor.cursorBlinking": "smooth",
"window.menuBarVisibility": "compact",
"codesnap.shutterAction": "copy",
"editor.stickyScroll.enabled": true,
"editor.semanticHighlighting.enabled": true,
"editor.formatOnSave": true,
"explorer.compactFolders": false,
"breadcrumbs.showFields": false,
"workbench.editor.labelFormat": "short",
// Head Text
"window.title": "${dirty}${separator}${activeEditorMedium}${separator}",
"window.titleSeparator": " -- ",
// Javascript or Typescript
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
// JSON
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"json.schemas": [
{
"name": "vscode-expo-manifest",
"url": "file:///c%3A/Users/pedvd/AppData/Roaming/Code/User/globalStorage/bycedric.vscode-expo/manifest-43.0.0.json",
"fileMatch": ["app.json", "app.config.json"]
}
],
// Markdown
"[markdown]": {
"editor.formatOnSave": true,
"editor.formatOnPaste": true
},
// Emmet
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
// Lint
"css.lint.duplicateProperties": "error",
"css.lint.compatibleVendorPrefixes": "warning",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"npm.keybindingsChangedWarningShown": true,
// Preferences
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.editor.enablePreviewFromQuickOpen": true,
"editor.rename.enablePreview": false,
"editor.linkedEditing": true,
"editor.parameterHints.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
// Extensions
"liveServer.settings.donotShowInfoMsg": true,
"workbench.sideBar.location": "right",
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.useTabs": true,
"editor.insertSpaces": false,
"glassit.alpha": 230,
"workbench.colorTheme": "Nebula",
"editor.detectIndentation": false
}