coc-settings.json 732 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "python.jediEnabled": false,
  3. "languageserver": {
  4. "golang": {
  5. "command": "gopls",
  6. "rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
  7. "filetypes": ["go"]
  8. },
  9. "dockerfile": {
  10. "command": "docker-langserver",
  11. "filetypes": ["dockerfile"],
  12. "args": ["--stdio"]
  13. },
  14. "bash": {
  15. "command": "bash-language-server",
  16. "args": ["start"],
  17. "filetypes": ["sh"],
  18. "ignoredRootPaths": ["~"]
  19. },
  20. "python": {
  21. "command": "python",
  22. "args": [
  23. "-mpyls",
  24. "-vv"
  25. ],
  26. "filetypes": [
  27. "python"
  28. ],
  29. "settings": {
  30. "pyls": {
  31. "enable": true,
  32. "plugins": {
  33. "pyls_mypy": {
  34. "enabled": true
  35. }
  36. }
  37. }
  38. }
  39. }
  40. }
  41. }