-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.json
More file actions
121 lines (105 loc) · 3.55 KB
/
vscode.json
File metadata and controls
121 lines (105 loc) · 3.55 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
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
{
// Основные настройки
"editor.smoothScrolling": true,
"editor.stickyScroll.enabled": false,
"workbench.tree.enableStickyScroll": false,
"window.titleBarStyle": "custom",
"window.controlsStyle": "hidden",
"window.zoomLevel": 1,
"workbench.list.smoothScrolling": true,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"chat.commandCenter.enabled": false,
"workbench.navigationControl.enabled": false,
"window.menuBarVisibility": "toggle",
// Прокрутка за пределы последней строки
"editor.scrollBeyondLastLine": true,
// Связанные редактирования тегов
"editor.linkedEditing": true,
// Автоматическое закрытие тегов
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
// Отображение символов
"editor.renderControlCharacters": true,
// Подсветка неоднозначных символов
"editor.unicodeHighlight.ambiguousCharacters": true,
// Быстрые подсказки
"editor.quickSuggestionsDelay": 0,
// Внешний вид
"editor.glyphMargin": false,
"window.customTitleBarVisibility": "auto",
"workbench.startupEditor": "none",
// Настройки курсора
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "expand",
"editor.cursorWidth": 0,
// Настройки шрифта
// "editor.fontSize": 16,
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.fontFamily": "Geist Mono",
// Кастомизация подсветки синтаксиса
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"keyword",
],
"settings": {
"fontStyle": "italic"
}
}
]
},
// Настройки терминала
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontSize": 13,
// Настройки Emmet
"emmet.includeLanguages": {
"blade": "html",
"php": "html",
"javascript": "javascriptreact"
},
// Настройки для Breadcrumbs
"breadcrumbs.enabled": true,
"breadcrumbs.icons": false,
"breadcrumbs.showKeys": false,
"breadcrumbs.showFiles": false,
"breadcrumbs.symbolPath": "off",
"breadcrumbs.showArrays": false,
"breadcrumbs.showEvents": false,
"breadcrumbs.showFields": false,
"breadcrumbs.showClasses": false,
"breadcrumbs.showMethods": false,
"breadcrumbs.showBooleans": false,
"breadcrumbs.showFunctions": false,
"breadcrumbs.showConstants": false,
"breadcrumbs.showEnumMembers": false,
"breadcrumbs.showConstructors": false,
// Настройки проверки орфографии
"cSpell.language": "en, ru, pl",
"cSpell.enabled": true,
"cSpell.enableFiletypes": [
"blade",
"php",
"jsx",
"tsx",
"ts",
"js",
"scss",
"sass",
"css",
"py",
],
// Настройки Ecss Tractor
"ecsstractor_port.bem_nesting": true,
// Остальное
"workbench.colorCustomizations": {
"scrollbar.shadow": "#ffffff00",
},
"workbench.colorTheme": "AMOLED Github Theme",
}