generated from anishathalye/dotfiles_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
86 lines (75 loc) · 2.7 KB
/
coc-settings.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"python.analysis.typeCheckingMode": "off",
"python.analysis.diagnosticMode": "workspace",
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "/usr/bin/mypy",
"python.linting.pylintEnabled": false,
"python.formatting.provider": "blackd",
"python.formatting.blackdPath": "/usr/bin/blackd",
"pyright.organizeimports.provider": "isort",
"yaml.format.bracketSpacing": true,
"prettier.tabWidth": 4,
"suggest.enablePreselect": true,
"suggest.enablePreview": true,
"suggest.maxPreviewWidth": 100,
"suggest.defaultSortMethod": "alphabetical",
"codeLens.enable": true,
"diagnostic.checkCurrentLine": true,
"diagnostic.maxWindowHeight": 20,
"diagnostic.errorSign": "✖",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "●",
"diagnostic.hintSign": "○",
"diagnostic.enableSign": true,
"diagnostic.refreshOnInsertMode": true,
"diagnostic.enableMessage": "never",
"diagnostic.showUnused": true,
"diagnostic.virtualText": true,
"explorer.icon.enableNerdfont": true,
"explorer.sources": [
{ "name": "buffer", "expand": true },
{ "name": "file", "expand": true }
],
"explorer.git.icon.status.added": "✚",
"explorer.git.icon.status.deleted": "✖",
"explorer.git.icon.status.renamed": "➜",
"explorer.git.icon.status.unmerged": "═",
"explorer.git.icon.status.untracked": "?",
"explorer.git.icon.status.modified": "✹",
"explorer.git.icon.status.ignored": "☒",
"explorer.previewAction.onHover": false,
"explorer.keyMappings.global": {
"<cr>": ["expandable?", ["expanded?", "collapse", "expand"], "open"]
},
"explorer.filename.colored.enable": false,
"explorer.width": 30,
"git.addedSign.hlGroup": "SignifySignAdd",
"git.changedSign.hlGroup": "SignifySignChange",
"git.removedSign.hlGroup": "SignifySignDelete",
"git.topRemovedSign.hlGroup": "SignifySignDelete",
"git.addedSign.text": "▎",
"git.changedSign.text": "▎",
"git.removedSign.text": "契",
"git.topRemovedSign.text": "契",
"git.changeRemovedSign.text": "▎",
//"git.addGBlameToVirtualText": true,
"snippets.extends": { "htmldjango": ["html"], "python": ["django"], "markdown": ["html"] },
"emmet.includeLanguages": {"htmldjango": "html"},
//"coc.preferences.formatOnSaveFiletypes": ["python"],
"snippets.triggerCharacters": ["*"],
"suggest.languageSourcePriority": 100,
"tabnine.priority": 99,
"eslint.packageManager": "yarn",
"vetur.ignoreProjectWarning": true,
"sql.database": "postgresql",
"markdownlint.config": {"line-length": false},
"project.rootPatterns": [
".git",
"manage.py"
],
"bootstrap-classname.filetypes": [
"html", "htmldjango"
],
"go.goplsPath": "gopls"
}