coc-settings.json 655 B

123456789101112131415161718192021222324
  1. {
  2. // "coc.preferences.formatOnSaveFiletypes": ["css", "markdown", "javascript", "graphql", "html", "yaml", "json", "python"],
  3. // python config
  4. "python.linting.enabled": true,
  5. "python.linting.pylintEnabled": true,
  6. "snippets.ultisnips.directories":
  7. [
  8. "UltiSnips",
  9. "~/.config/nvim/utils/snips"
  10. ],
  11. // explorer
  12. "explorer.width": 30,
  13. "explorer.icon.enableNerdfont": true,
  14. "explorer.previewAction.onHover": false,
  15. "explorer.keyMappings.global": {
  16. "<cr>": ["expandable?", "expand", "open"],
  17. "v": "open:vsplit"
  18. },
  19. "clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/14.0.3/clangd_14.0.3/bin/clangd"
  20. }