summaryrefslogtreecommitdiff
path: root/.vscode/settings.json.default
blob: 1868e4f3afa266c18acc9d14661de8b1c90616b5 (plain)
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
/* Copy this file to settings.json to active these defaults. */
{
   "editor.rulers": [
      80
   ],
   /* C, Makefiles, ASM, Linkerfiles, Properties */
   "editor.insertSpaces": false,
   "editor.tabSize": 8,
   /* Some exceptions based on current trends */
   "[markdown]": {
      "editor.insertSpaces": true,
      "editor.tabSize": 2
   },
   "[python]": {
      "editor.insertSpaces": true,
      "editor.tabSize": 2
   },
   "[shellscript]": {
      "editor.insertSpaces": true,
      "editor.tabSize": 2
   },
   "[yaml]": {
      "editor.insertSpaces": true,
      "editor.tabSize": 2
   },
   "files.associations": {
      "Makefile.*": "makefile",
      "*.inc": "c",
      "*.wrap": "c",
      "*.tasklist": "c",
      "*.irqlist": "c",
      "*.mocklist": "c",
      "*.testlist": "c"
   }
}