-
Notifications
You must be signed in to change notification settings - Fork 51
/
MAKRO.code-workspace
53 lines (51 loc) · 1.38 KB
/
MAKRO.code-workspace
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
// "F55252", # DREAM
// "14AFA6", # REFORM
// "FF9B4B", # SMILE
// "5CD272", # Grøn REFORM
// "42B4E0", # MAKRO
// "BCADDD", # Plum
// "005F97", # Dark blue
// "893070", # Maroon
// "46464C", # Dark gray
// "E6E6E8", # Light gray
{
"folders": [
{
"path": "." // Top directory
}
],
"settings": {
"editor.codeActionsOnSave": {},
"editor.rulers": [120],
"git.autofetch": true,
"jupyter.interactiveWindow.textEditor.executeSelection": true,
"jupyter.interactiveWindow.creationMode": "multiple",
"editor.tabSize": 2,
"search.useIgnoreFiles": false,
"search.exclude": {
"**/*.g00": true,
"**/*.svg": true,
"**/*.pkl": true,
"**/*.gdx": true,
"**/*.emf": true,
"**/*.pyc": true,
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#14AFA6",
"titleBar.activeForeground": "#000000",
"titleBar.inactiveBackground": "#14AFA6",
"titleBar.inactiveForeground": "#000000",
},
"editor.rulers": [120],
"jupyter.interactiveWindow.textEditor.executeSelection": true,
"jupyter.interactiveWindow.creationMode": "multiple",
},
"extensions": {
"recommendations": [
"jeppekinslev.gamY-syntax-highlighting", // gamY syntax highlighting
"teabyii.ayu", // Color themes, inludes dark, light and mirage themes
"ms-toolsai.jupyter", // Jupyter notebook support
"ms-python.python" // Python support
]
},
}