Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. {
  2. "diagnostic.errorSign": " ",
  3. "diagnostic.warningSign": " ",
  4. "diagnostic.infoSign": " ",
  5. "diagnostic.hintSign": "",
  6. "coc.preferences.hoverTarget": "float",
  7. "coc.preferences.formatOnType": true,
  8. "coc.preferences.formatOnSaveFiletypes": [
  9. "python"
  10. ],
  11. "list.source.files.command": "rg",
  12. "list.source.files.args": ["--files"],
  13. "list.source.grep.args": ["--column", "--line-number", "--no-heading", "--fixed-strings", "--ignore-case", "--no-hidden", "--follow"],
  14. "list.insertMappings": {
  15. "<C-x>": "action:split",
  16. "<C-s>": "action:vsplit"
  17. },
  18. "list.normalMappings": {
  19. "<C-x>": "action:split",
  20. "<C-s>": "action:vsplit"
  21. },
  22. "suggest.timeout": 500,
  23. "suggest.completionItemKindLabels": {
  24. "variable": "\uf1cb",
  25. "function": "\uf1b2",
  26. "class": "\uf1f9",
  27. "module": "\uf1b3",
  28. "keyword": "\uf192",
  29. "property": "\uf0ca",
  30. "value": "\uf196",
  31. "field": "\uf013",
  32. "method": "\uf1b2",
  33. "file": "\uf24a",
  34. "folder": "\uf114"
  35. },
  36. "python.linting.flake8Path": "/Users/esn89/Library/Python/3.7/bin/flake8",
  37. "python.linting.flake8Enabled": true,
  38. "python.jediEnabled": false,
  39. "python.formatting.provider": "black",
  40. "python.formatting.blackPath": "/usr/local/bin/black",
  41. "python.formatting.blackArgs": ["--line-length", "80"],
  42. "yaml.trace.server": "verbose",
  43. "yaml.validate": true,
  44. "yaml.completion": true,
  45. "languageserver": {
  46. "golang": {
  47. "command": "gopls",
  48. "rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
  49. "filetypes": ["go"],
  50. "initializationOptions": {
  51. "usePlaceholders": true
  52. }
  53. }
  54. },
  55. "python.linting.enabled": true,
  56. "python.autoComplete.addBrackets": true
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement