-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathsettings.json
More file actions
37 lines (28 loc) · 883 Bytes
/
settings.json
File metadata and controls
37 lines (28 loc) · 883 Bytes
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
{
// Git settings
"git.autofetch": true,
// Editor settings
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"editor.formatOnSave": true,
// Markdown settings
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"markdown.extension.toc.levels": "2..6",
// Python settings
"python.languageServer": "Pylance",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
// Change the Primary Sidebar location
"workbench.sideBar.location": "right",
// Markdown settings
// Set these settings to false if you don't want
// Markdown doc in the editor and preview to scroll synchronously.
"markdown.preview.scrollEditorWithPreview": true,
"markdown.preview.scrollPreviewWithEditor": true,
"nix.enableLanguageServer": true,
"nix.serverPath": "nil",
"nix.formatterPath": "nixfmt"
}