defishguy

zedconf

May 31st, 2024 (edited)
1,522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. {
  2. "theme": "Atelier Cave Dark",
  3. "features": {
  4. "copilot": false
  5. },
  6. "telemetry": {
  7. "diagnostics": false,
  8. "metrics": false
  9. },
  10. "assistant": {
  11. "version": "1",
  12. "provider": {
  13. "name": "openai",
  14. "type": "openai",
  15. "default_model": "gpt-4-turbo-preview",
  16. "api_url": "http://localhost:11434"
  17. }
  18. },
  19. "hooks": {
  20. "pre-save": {
  21. "python": "black {file}"
  22. }
  23. },
  24. "JSON": {
  25. "command": "formatter",
  26. "arguments": ["--stdin-filepath", "{buffer_path}"]
  27. },
  28. "languages": {
  29. "Python": {
  30. "preferred_line_length": 100,
  31. "format_on_save": {
  32. "external": {
  33. "command": "black",
  34. "arguments": ["-"]
  35. }
  36. }
  37. }
  38. },
  39. "remove_trailing_whitespace_on_save": true,
  40. "txt": {
  41. "preferred_line_length": 100,
  42. "soft_wrap": "preferred_line_length"
  43. },
  44. "show_completions_on_input": true,
  45. "chat_panel": {
  46. "button": false
  47. },
  48. "collaboration_panel": {
  49. "button": false
  50. },
  51. "formatter": "prettier",
  52. "ui_font_size": 16,
  53. "buffer_font_size": 16,
  54. "preferred_line_length": 90,
  55. "soft_wrap": "preferred_line_length",
  56. "wrap_guides": [100],
  57. "show_wrap_guides": true,
  58. "always_treat_brackets_as_autoclosed": true
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment