Preferences.sublime-settings 824 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Bright.tmTheme",
  3. "ensure_newline_at_eof_on_save": true,
  4. "file_exclude_patterns":
  5. [
  6. ".DS_Store",
  7. "*.pid",
  8. "*.pyc"
  9. ],
  10. "find_selected_text": true,
  11. "folder_exclude_patterns":
  12. [
  13. ".git",
  14. "__pycache__",
  15. "env",
  16. "env3"
  17. ],
  18. "font_face": "Meslo LG S for Powerline",
  19. "font_size": 13,
  20. "highlight_modified_tabs": true,
  21. "ignored_packages":
  22. [
  23. "Pylinter",
  24. "Jedi - Python autocompletion"
  25. ],
  26. "rulers":
  27. [
  28. 72,
  29. 79
  30. ],
  31. "scroll_past_end": false,
  32. "tab_size": 4,
  33. "translate_tabs_to_spaces": true,
  34. "trim_trailing_white_space_on_save": true,
  35. "wide_caret": true,
  36. "word_wrap": true,
  37. "wrap_width": 80
  38. }