-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.32 KB
/
package.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
{
"name": "coc-vimtex",
"version": "1.1.5",
"description": "vimtex integration for coc.nvim",
"main": "src/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"vimtex"
],
"engines": {
"coc": "^0.0.56"
},
"activationEvents": [
"onLanguage:tex",
"onLanguage:plaintex",
"onLanguage:latex",
"onLanguage:markdown",
"onLanguage:pandoc"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"coc.source.vimtex.enable": {
"type": "boolean",
"default": true
},
"coc.source.vimtex.priority": {
"type": "integer",
"default": 99
},
"coc.source.vimtex.filetypes": {
"type": "array",
"default": [
"tex",
"plaintex",
"latex"
]
},
"coc.source.vimtex.disableSyntaxes": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
}
}
}
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc-vimtex.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^10.12.24",
"coc.nvim": "^0.0.81-next.7",
"rimraf": "^2.6.3"
},
"dependencies": {}
}