-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
41 lines (41 loc) · 1.31 KB
/
vscode-settings.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"breadcrumbs.enabled": false,
"window.titleBarStyle": "custom",
"files.autoSave": "onFocusChange",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
//WORKBENCH SETTINGS
"workbench.settings.editor": "json",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"workbench.colorTheme": "New Moon",
"workbench.iconTheme": "material-icon-theme",
// EDITOR SETTINGS
"editor.fontFamily": "'JetBrains Mono', 'monospace', monospace",
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": false,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.renderLineHighlight": "all",
"editor.cursorBlinking": "solid",
"editor.cursorWidth": 3,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
//"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
80,
100
],
// EXPLORER SETTINGS
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.sortOrder": "type",
// LANGUAGE SPECIFIC SETTINGS
"[java]": {
"editor.tabSize": 4,
"editor.defaultFormatter": "redhat.java"
}
}