coc-settings.json 543 B

12345678910111213141516171819202122
  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": {
  16. "<cr>": ["expandable?", "expand", "open"],
  17. "v": "open:vsplit"
  18. }
  19. }