-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
150 lines (147 loc) · 4.37 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"autoDocstring.docstringFormat": "google",
"C_Cpp.formatting": "Default",
"C_Cpp.intelliSenseEngine": "Default",
"C_Cpp.clang_format_path": "/usr/bin/clang-format-8",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"88"
],
"C_Cpp.updateChannel": "Insiders",
"clang.executable": "clang-6.0",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": true,
"editor.autoIndent": "full",
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.enabled": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.rulers": [
88
],
"files.autoSave": "afterDelay",
"files.associations": {
"*.template": "jinja",
"*.yml": "ansible",
"functional": "cpp"
},
"files.exclude": {
"**/*.d.ts": true,
"**/*.pyc": true,
"**/*.js.map": true,
"**/web_apps/**/build": true,
"**/web_app_symlinks/*/build": true,
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/build/**": true,
"**/node_modules/**": true,
"**/.*/**": true,
},
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.keymap": "alternate",
"latex-workshop.message.update.show": false,
"latex-workshop.view.pdf.viewer": "tab",
"python.formatting.autopep8Args": [
"--global-config",
"${workspaceRoot}/.pep8"
],
"python.linting.pylintEnabled": false,
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${appName}",
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"build": true,
".qtcreator*": true,
"**/*_p.js": true,
"**/*_p.ts": true,
"**/*_t.js": true,
"**/*_t.ts": true,
"**/.theia*": true,
},
"editor.suggestSelection": "first",
"gitlens.views.repositories.files.layout": "list",
"editor.wordWrapColumn": 100,
"editor.wrappingIndent": "indent",
"breadcrumbs.enabled": true,
"gitlens.views.repositories.location": "scm",
"gitlens.views.fileHistory.location": "scm",
"gitlens.views.lineHistory.location": "scm",
"gitlens.views.compare.location": "scm",
"gitlens.views.search.location": "scm",
"[latex]": {
"editor.wordWrap": "on"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vsicons.dontShowNewVersionMessage": true,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.fontSize": 13,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"editorOverviewRuler.infoForeground": "#00000000"
},
"cSpell.userWords": [
"Barcode",
"CMAKE",
"WIFI",
"angacc",
"barcodes",
"eigen",
"odoo",
"overrides",
"pylint",
"recurse",
"rerun",
"sympc",
"utime"
],
"cSpell.words": [
"angacc",
"angvel",
"deps",
"in",
"isfile",
"module"
],
"cSpell.ignoreWords": [
"cmakelists"
],
"explorer.confirmDelete": false,
"cmake-tools-helper.cmake_download_path": "/home/ross/.vscode/extensions/maddouri.cmake-tools-helper-0.2.1/cmake_download",
"editor.fontSize": 15,
"cmake.configureOnOpen": false,
"python.languageServer": "Jedi",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"terminal.integrated.enableMultiLinePasteWarning": false,
"explorer.confirmDragAndDrop": false,
"editor.guides.indentation": true,
"git.autofetch": true,
"[python]": {
},
"window.zoomLevel": -1
}