-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlfn-shell.code-workspace
More file actions
54 lines (54 loc) · 1.39 KB
/
lfn-shell.code-workspace
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "symbols",
"workbench.productIconTheme": "fluent-icons",
"workbench.startupEditor": "none",
"workbench.activityBar.location": "top",
"editor.fontSize": 13.5,
"editor.fontFamily": "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace",
"editor.fontLigatures": true,
"editor.fontWeight": 600,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.fontSize": 13.5,
"terminal.integrated.fontWeight": "bold",
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.enableImages": true,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"mcp": {
"servers": {
"io.github.upstash/context7": {
"type": "stdio",
"command": "npx",
"args": [
"@upstash/context7-mcp@1.0.31"
],
"env": {
"CONTEXT7_API_KEY": "${input:CONTEXT7_API_KEY}"
},
"gallery": "https://api.mcp.github.com",
"version": "1.0.31"
}
},
"inputs": [
{
"id": "CONTEXT7_API_KEY",
"type": "promptString",
"description": "API key for authentication",
"password": true
}
]
}
}
}