-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode-settings.json
35 lines (33 loc) · 1.25 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
{
"workbench.colorTheme": "Solarized Dark",
"editor.tabSize": 2,
"editor.cursorBlinking": "phase",
"extensions.ignoreRecommendations": true,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"git.autofetch": true,
"python.linting.pylintArgs": [
"--disable=E0401"
],
"gitlens.keymap": "alternate",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.fontFamily": "Monoid, Roboto Mono Light for Powerline, Hack, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"editor.fontSize": 12,
"explorer.confirmDragAndDrop": false,
"editor.formatOnSave": true,
"javascript.format.enable": false,
"prettier.eslintIntegration": true
}