-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-config.json
49 lines (49 loc) · 1.55 KB
/
vscode-config.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
{
"workbench.iconTheme": "material-icon-theme",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"javascript.validate.enable": false,
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.panel.location": "bottom",
"terminal.integrated.fontFamily": "DejaVu Sans Mono for Powerline",
"window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"eslint.autoFixOnSave": true,
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": false
},
"workbench.editor.openPositioning": "right",
"workbench.editor.tabCloseButton": "right",
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.theme": "specific",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "html"
},
"[javascriptreact]": {}
}