1
0

Preferences.sublime-settings 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "added_words":
  3. [
  4. "deconstruct",
  5. "params",
  6. "redux",
  7. "middleware",
  8. "placeholder",
  9. "fallback",
  10. "placeholders"
  11. ],
  12. "always_show_minimap_viewport": true,
  13. "auto_complete_commit_on_tab": true,
  14. "auto_complete_with_fields": true,
  15. "auto_find_in_selection": true,
  16. "close_windows_when_empty": true,
  17. "color_scheme": "Packages/ayu/ayu-light.sublime-color-scheme",
  18. "dictionary": "Packages/Language - English/en_GB.dic",
  19. "draw_minimap_border": true,
  20. "enable_tab_scrolling": true,
  21. "ensure_newline_at_eof_on_save": true,
  22. "file_exclude_patterns":
  23. [
  24. "*.pyc",
  25. "*.pyo",
  26. "*.exe",
  27. "*.dll",
  28. "*.obj",
  29. "*.o",
  30. "*.a",
  31. "*.lib",
  32. "*.so",
  33. "*.dylib",
  34. "*.ncb",
  35. "*.sdf",
  36. "*.suo",
  37. "*.pdb",
  38. "*.idb",
  39. ".DS_Store",
  40. "*.class",
  41. "*.psd",
  42. "*.db",
  43. ".gitkeep",
  44. ".rspec",
  45. "Gemfile.lock",
  46. "._*",
  47. ".zeus.sock",
  48. ".DS_Store",
  49. "*.js.map",
  50. "webpack.records.json",
  51. "records.json",
  52. ".eslintcache"
  53. ],
  54. "folder_exclude_patterns":
  55. [
  56. ".svn",
  57. ".git",
  58. ".hg",
  59. "CVS",
  60. "node_modules",
  61. "dist"
  62. ],
  63. "font_family": "Inconsolata",
  64. "font_size": 14.0,
  65. "highlight_line": true,
  66. "highlight_modified_tabs": true,
  67. "ignored_packages":
  68. [
  69. "CSS3",
  70. "TypeScript-for-JS",
  71. "Vintage",
  72. "Web Inspector 3"
  73. ],
  74. "indent_guide_options":
  75. [
  76. "draw_normal",
  77. "draw_active"
  78. ],
  79. "rulers":
  80. [
  81. 80,
  82. 100,
  83. 120
  84. ],
  85. "scroll_past_end": true,
  86. "scroll_speed": 1.5,
  87. "show_encoding": false,
  88. "show_full_path": true,
  89. "show_line_endings": false,
  90. "tab_size": 2,
  91. "theme": "ayu-light.sublime-theme",
  92. "translate_tabs_to_spaces": true,
  93. "trim_trailing_white_space_on_save": true
  94. }