This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnitro-cold-brew.code-workspace
92 lines (92 loc) · 3.01 KB
/
nitro-cold-brew.code-workspace
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
{
"extensions": {
"recommendations": [
"wix.vscode-import-cost",
"esbenp.prettier-vscode",
"christian-kohler.npm-intellisense",
"raczzalan.webgl-glsl-editor"
]
},
"folders": [
{
"path": "./"
}
],
"settings": {
"[css]": {
"editor.suggest.insertMode": "replace",
"editor.suggest.showColors": true,
"editor.suggest.showCustomcolors": true
},
"[glsl]": {
"editor.defaultFormatter": "raczzalan.webgl-glsl-editor"
},
"css.format.maxPreserveNewLines": 1,
"css.format.spaceAroundSelectorSeparator": true,
"css.lint.float": "warning",
"css.lint.hexColorLength": "error",
"css.lint.idSelector": "error",
"css.lint.ieHack": "error",
"css.lint.important": "warning",
"css.lint.importStatement": "warning",
"css.lint.universalSelector": "warning",
"css.lint.zeroUnits": "warning",
"editor.codeActionsOnSave": {
"addMissingImports": "explicit",
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
"source.sort.json": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.inlineSuggest.enabled": true,
"editor.insertSpaces": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.rulers": [80, 120],
"editor.stablePeek": true,
"editor.suggest.filterGraceful": true,
"editor.suggest.showColors": false,
"editor.suggest.showCustomcolors": false,
"editor.suggest.showSnippets": false,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.unicodeHighlight.ambiguousCharacters": true,
"editor.unicodeHighlight.invisibleCharacters": true,
"explorer.excludeGitIgnore": false,
"explorer.fileNesting.enabled": true,
"files.encoding": "utf8",
"files.eol": "\n",
"files.saveConflictResolution": "overwriteFileOnDisk",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"html.format.indentInnerHtml": true,
"html.format.maxPreserveNewLines": 1,
"javascript.updateImportsOnFileMove.enabled": "always",
"webgl-glsl-editor.codeInjection": true,
"webgl-glsl-editor.codeInjectionSource": [
"#version 300 es",
"precision highp float;",
"uniform vec3 iResolution;",
"uniform float iTime;",
"uniform float iTimeDelta;",
"uniform int iFrame;",
"uniform float iChannelTime[4];",
"uniform vec3 iChannelResolution[4];",
"uniform vec4 iMouse;",
"uniform sampler2D iChannel0;",
"uniform sampler2D iChannel1;",
"uniform sampler2D iChannel2;",
"uniform sampler2D iChannel3;",
"uniform vec4 iDate;",
"uniform float iSampleRate;",
"varying vec vUv;"
],
"webgl-glsl-editor.format.placeSpaceAfterKeywords": true,
"webgl-glsl-editor.format.placeSpaceAroundUnaryOperators": true,
"webgl-glsl-editor.strictRename": false
}
}