-
Notifications
You must be signed in to change notification settings - Fork 1
/
bash_scripting.code-workspace
46 lines (43 loc) · 1.2 KB
/
bash_scripting.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"[bash]": {
"editor.formatOnSave": true
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "none"
},
"editor.tabSize": 4,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.fontSize": 16,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"terminal.integrated.rendererType": "dom",
"git.autorefresh": true,
"markdownlint.ignore": ["**/*.md.html"],
"files.insertFinalNewline": true,
"files.associations": {
"*.md.html": "markdown"
},
"shellcheck.enable": true,
"shellcheck.useWorkspaceRootAsCwd": true,
"shellcheck.run": "onSave",
"shellformat.flag": "-i 2 -ci -sr -bn",
//pdf settings
"latex-workshop.view.pdf.invertMode.enabled": "always",
"latex-workshop.view.pdf.invert": 0.8,
"latex-workshop.view.pdf.backgroundColor": "#dcdcdc" //"#3b3537"
}
}