-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
58 lines (50 loc) · 2.65 KB
/
settings.json
File metadata and controls
58 lines (50 loc) · 2.65 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
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "vscode-icons",
"editor.rulers": [
{"column": 79, "color":"#5a5a5a20"},
{"column": 80, "color":"#5a5a5a50"},
{"column": 120, "color":"#5a5a5a100"},
],
"files.trimTrailingWhitespace": true, // Enables whitespace trimming at file save time
"editor.multiCursorModifier": "ctrlCmd", // sets the multi-select trigger to ctrl+<click> on windows.
"editor.fontWeight": "1000",
"editor.fontSize": 15,
"editor.fontFamily": "Victor Mono", // Needed for font ligatures.
// other good options:
// - Fira Code: https://github.com/tonsky/FiraCode
// - Fira Code iScript: https://github.com/kencrocken/FiraCodeiScript
// - Monoid: https://github.com/larsenwork/monoid
// - Hasklig: https://github.com/i-tu/Hasklig/
// - Fixedsys Excelsior: https://github.com/kika/fixedsys
// - Victor Mono: https://github.com/rubjo/victor-mono
"editor.fontLigatures": true, // Converts >= into ≥
"editor.tokenColorCustomizations": { // Causes certain keywords to use italic, useful with ligature font
"textMateRules": [
{
"scope": [
"comment",
],
"settings": {
"fontStyle": "italic",
}
}
]
},
"editor.wrappingIndent": "deepIndent", // Causes wrapped lines to indent +2 compared to parent
"editor.cursorBlinking": "expand", // Cursor blink style
"window.title": "${rootName}${separator}${activeEditorMedium}${dirty}", // Sets titlebar style
"editor.minimap.renderCharacters": false, // Shows blocks of color instead of characters for minimap (scroll assist)
"editor.minimap.showSlider": "always", // Shows current scroll region always
"editor.showFoldingControls": "always", // Always show code folding arrows
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"python.languageServer": "Default",
"jupyter.askForKernelRestart": false,
"notebook.showFoldingControls": "always",
"gitblame.statusBarMessageFormat": "Git: ${author.name} ( ${time.ago} ) - ${commit.summary}",
"AREPL.pythonPath": "python",
"autoDocstring.docstringFormat": "sphinx",
}