-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkun.code-workspace
98 lines (92 loc) · 1.86 KB
/
kun.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
93
{
"folders": [
{
"path": "."
},
{
"path": "/Users/chaleong/Google Drive/engr489-2019/kun.wiki"
}
],
"settings": {
// "python.pythonPath": "/root/anaconda3/bin/python",
"python.pythonPath": "/Users/chaleong/anaconda3/bin/python3",
"psi-header.config": {
"forceToTop": true,
"blankLinesAfter": 6,
"license": "Custom"
},
"psi-header.changes-tracking": {
"isActive": true,
"modAuthor": "Modified By: ",
"modDate": "Last Modified: ",
"modDateFormat": "date",
"include": [],
"exclude": [
"markdown",
"json"
],
"excludeGlob": [
"out/**",
"src/**/*.xyz"
],
"autoHeader": "manualSave"
},
"psi-header.variables": [
["company", "Victoria University of Wellington ECS"],
["author", "Charlene Leong"],
["authoremail", "[email protected]"]
],
"psi-header.lang-config": [
{
"language": "lua",
"begin": "--[[",
"prefix": "--",
"end": "--]]",
"blankLinesAfter": 0
},
{
"language": "python",
"begin": "###",
"prefix": "# ",
"end": "###",
"blankLinesAfter": 0,
"beforeHeader": [
"#!/usr/bin/env python3",
"# -*- coding:utf-8 -*-"
]
},
{
"language": "javascript",
"begin": "/**",
"prefix": " * ",
"end": " */",
"blankLinesAfter": 2,
"forceToTop": false
},
{
"language": "typescript",
"mapTo": "javascript"
}
],
"psi-header.templates": [
{
"language": "*",
"template": [
"Created Date: <<filecreated('dddd, MMMM Do YYYY, h:mm:ss a')>>",
"Author: <<author>> <<authoremail>>",
"Last Modified: "
],
"changeLogCaption": "HISTORY:",
"changeLogHeaderLineCount": 2,
"changeLogEntryTemplate": [
"<<dateformat('YYYY-MM-DD')>>\t<<initials>>\t"
]
},
{
"language": "typescript",
"mapTo": "javascript"
}
],
"git.ignoreLimitWarning": true
}
}