This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvscode-settings.json
51 lines (44 loc) · 1.65 KB
/
vscode-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
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "'mononoki', 'Roboto Mono Light', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.cursorBlinking": "phase",
"editor.quickSuggestionsDelay": 20,
"editor.snippetSuggestions": "bottom",
"editor.renderIndentGuides": false,
"editor.wrappingColumn": 0,
"window.zoomLevel": 0,
"window.showFullPath": true,
"terminal.external.linuxExec": "urxvt",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 3000,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/home/vicky/anaconda/bin/pylint",
"python.linting.lintOnSave": true,
"python.linting.pylintArgs": ["--extension-pkg-whitelist=numpy"],
"spellchecker.language": "en_US",
"spellchecker.ignoreWordsList": [
"config"
],
"spellchecker.documentTypes": [
"markdown",
"latex",
"plaintext"
],
"spellchecker.ignoreRegExp": [
"/\\\\(.*\\\\.(jpg|jpeg|png|md|gif|svg|pdf|PDF|SVG|JPG|JPEG|PNG|MD|GIF)\\\\)/g",
"/((http|https|ftp|git)\\\\S*)/g",
"/^(```\\\\s*)(\\\\w+)?(\\\\s*[\\\\w\\\\W]+?\\\\n*)(```\\\\s*)\\\\n*$/gm"
],
"spellchecker.ignoreFileExtensions": [
".env",
".json",
".py"
],
"spellchecker.checkInterval": 3000,
"markdown.preview.fontFamily": "'Roboto', 'Segoe WPC', 'Segoe UI', 'SFUIText-Light', 'HelveticaNeue-Light'",
"window.openFoldersInNewWindow": "on",
"window.reopenFolders": "all",
"workbench.activityBar.visible": false
}