Preferences.sublime-settings 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "close_windows_when_empty": true,
  3. "color_scheme": "Packages/User/Monokai Extended (SL).tmTheme",
  4. "dictionary": "Packages/Language - English/en_GB.dic",
  5. "draw_minimap_border": true,
  6. "enable_tab_scrolling": true,
  7. "ensure_newline_at_eof_on_save": true,
  8. "file_exclude_patterns":
  9. [
  10. "*.pyc",
  11. "*.pyo",
  12. "*.exe",
  13. "*.dll",
  14. "*.obj",
  15. "*.o",
  16. "*.a",
  17. "*.lib",
  18. "*.so",
  19. "*.dylib",
  20. "*.ncb",
  21. "*.sdf",
  22. "*.suo",
  23. "*.pdb",
  24. "*.idb",
  25. ".DS_Store",
  26. "*.class",
  27. "*.psd",
  28. "*.db",
  29. ".gitignore",
  30. ".gitkeep",
  31. ".rspec",
  32. "Gemfile.lock",
  33. "._*",
  34. ".zeus.sock"
  35. ],
  36. "font_family": "Inconsolata",
  37. "font_size": 14.0,
  38. "highlight_line": true,
  39. "highlight_modified_tabs": true,
  40. "ignored_packages":
  41. [
  42. "Git",
  43. "Sass",
  44. "Vintage",
  45. "DocBlockr",
  46. "Web Inspector 3"
  47. ],
  48. "indent_guide_options":
  49. [
  50. "draw_normal",
  51. "draw_active"
  52. ],
  53. "open_files_in_new_window": true,
  54. "rulers":
  55. [
  56. 80,
  57. 120
  58. ],
  59. "scroll_past_end": true,
  60. "show_encoding": true,
  61. "show_full_path": true,
  62. "show_line_endings": true,
  63. "tab_size": 2,
  64. "theme": "Soda Dark 3.sublime-theme",
  65. "translate_tabs_to_spaces": true,
  66. "trim_trailing_white_space_on_save": true
  67. }