neovim/coc-settings.json

16 lines
496 B
JSON
Raw Normal View History

2023-10-24 22:54:55 -04:00
{
"suggest.autoTrigger": "none",
"suggest.timeout": 500,
"pyright.disableDocumentation":false,
2023-10-25 18:54:24 -05:00
"python.analysis.diagnosticSeverityOverrides":{
"reportUnboundVariable":"none"
},
"hover.target": "preview",
"clangd.path": "/usr/bin/clangd",
"python.formatting.provider": "black",
"python.formatting.blackPath": "/home/aselimov/.local/bin/black",
"python.formatting.blackArgs": ["-l","100"],
"coc.preferences.formatOnSaveFiletypes": ["python"]
2023-10-24 22:54:55 -04:00
}