-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
84 lines (77 loc) · 2.76 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
{
// * Настройки интерфейса
"workbench.colorTheme": "Bearded Theme Anthracite",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "right",
"editor.cursorBlinking": "expand",
"editor.cursorStyle": "line-thin",
"explorer.autoReveal": true,
"editor.minimap.enabled": false,
"editor.guides.bracketPairs": "active",
"editor.glyphMargin": false,
"workbench.activityBar.location": "top",
"workbench.startupEditor": "none",
"editor.wordWrap": "on",
"window.commandCenter": false,
// * Цвета интерфейса как в Windows 11
"workbench.colorCustomizations": {
"activityBar.background": "#111111",
"activityBar.border": "#ffffff05",
"sideBar.background": "#111111",
"tab.inactiveBackground": "#111111",
"tab.activeBorderTop": "#a2abb5",
"tab.unfocusedHoverBorder": "#a2abb5",
"sideBarSectionHeader.background": "#111111",
"editorGroupHeader.tabsBackground": "#111111",
"sideBar.border": "#ffffff05",
"sideBarSectionHeader.border": "#ffffff05",
"panel.background": "#191919",
"panel.border": "#ffffff05",
"editor.background": "#191919",
"statusBar.background": "#191919",
"statusBar.border": "#ffffff05",
"breadcrumb.background": "#191919",
"editorGutter.background": "#191919",
"tab.activeBackground": "#191919",
"tab.hoverBackground": "#191919",
"tab.border": "#ffffff05",
"terminal.background": "#191919",
"titleBar.activeBackground": "#0a0a0a",
"commandCenter.background": "#0a0a0a",
"commandCenter.activeBackground": "#191919",
"commandCenter.activeBorder": "#ffffff05",
"focusBorder": "#ffffff00"
},
// * Плавный scroll
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
// * Шрифт
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
// * Скрытые папки
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
},
// * Линтеры
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "explicit",
"source.fixAll": "explicit"
},
"stylelint.validate": ["css", "postcss", "scss"],
"editor.insertSpaces": true,
"editor.tabSize": 2,
"explorer.confirmDelete": false,
// * Настройки плагинов
"cSpell.language": "en, ru",
"markdown-preview-enhanced.previewTheme": "one-dark.css",
// ? остальные настройки...
"git.confirmSync": false,
"codeium.enableCodeLens": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"scss.lint.unknownAtRules": "ignore"
}