-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
88 lines (81 loc) · 2.34 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
{
//* edit font
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// editor tabSize
"editor.tabSize": 2,
// editor font
"editor.fontWeight": 515,
"editor.fontSize": 14,
//* stick scroll
"scroll": "True",
//* edit terminal
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.fontWeight": 525,
"terminal.integrated.fontSize": 15,
"terminal.integrated.lineHeight": 1,
//* auto-format code
"editor.defaultFormatter": "esbenp.prettier-vscode",
// c++
"C_Cpp.clang_format_fallbackStyle": "Google",
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
// sql
"[sql]": {
"editor.defaultFormatter": "cymonk.sql-formatter"
},
//? python
"[python]": {
// "editor.defaultFormatter": "ms-python.autopep8"
"editor.defaultFormatter": "ms-python.black-formatter"
},
// "python.formatting.provider": "none",
//?
"python.analysis.typeCheckingMode": "off",
// java
"[java]": {
// "editor.suggest.snippetsPreventQuickSuggestions": false
"editor.defaultFormatter": "redhat.java"
},
//? auto format when save
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
//* deafault cpp
"C_Cpp.errorSquiggles": "disabled",
"files.associations": {
"ostream": "cpp"
},
//* pip library in python
"python.analysis.extraPaths": [
"C:\\Users\\Admin\\AppData\\Roaming\\Python\\Python311\\Lib\\site-packages"
],
//* "peacock.color": "#832561",
//* background anime
"background.enabled": true,
// "background.loop": false,
// "background.useDefault": false,
"background.useFront": false,
"background.style": {
"content": "''",
"pointer-events": "none",
"position": "absolute",
"z-index": "99999",
"width": "100%",
"height": "100%",
"margin-left": "0%",
"background-position": "right",
"background-size": "cover",
"background-repeat": "no-repeat",
"opacity": 0.3
},
"background.customImages": [
// "https://wallpaperaccess.com/full/1400727.jpg"
//"https://phunugioi.com/hinh-nen-anime-dep-de-thuong-cute-buon-ngau-lanh-lung/anime-original-15-uhd-desktop-wallpaper-for-4k-ultra-hd-tv-jpg/"
],
// animation:
"editor.cursorSmoothCaretAnimation": "off"
//* end setting
}