forked from davidleininger/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.json
85 lines (85 loc) · 2.37 KB
/
vscode.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
{
"color-highlight.markerType": "underline",
"color-highlight.markRuler": false,
"editor.colorDecorators": false,
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.letterSpacing": 0,
"editor.lineHeight": 22,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.fontWeight": "300",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.matchBrackets": false,
"editor.multiCursorModifier": "ctrlCmd",
"explorer.decorations.colors": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
110
],
"editor.snippetSuggestions": "top",
"editor.wordWrap": "on",
"editor.wordWrapColumn": 110,
"[javascript]": {
"editor.formatOnSave": false,
},
"editor.tabSize": 2,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"autoFix": true,
"language": "javascript"
},
{
"autoFix": true,
"language": "javascriptreact"
},
{
"autoFix": true,
"language": "html"
},
{
"autoFix": true,
"language": "vue"
}
],
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": false,
"files.associations": {
"*.html": "html"
},
"files.exclude": {
"**/.git": false
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.enableSmartCommit": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"material-icon-theme.showUpdateMessage": false,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 14,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"window.zoomLevel": 0,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Cobalt Next",
"workbench.editor.tabSizing": "shrink",
"workbench.startupEditor": "newUntitledFile"
}