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
|
{
"coc.preferences.formatOnSaveFiletypes": [
"css",
"markdown",
"javascript",
"graphql",
"html",
"yaml",
"json",
"python"
],
// python config
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"snippets.ultisnips.directories": [
"UltiSnips",
"~/.config/nvim/utils/snips"
],
// explorer
"explorer.width": 30,
"explorer.icon.enableNerdfont": true,
"explorer.previewAction.onHover": false,
"explorer.keyMappings.global": {
"<cr>": [
"expandable?",
"expand",
"open"
],
"v": "open:vsplit"
},
"snippets.userSnippetsDirectory": "~/.config/nvim/snips"
}
|