Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. ### Settings
  2.  
  3. ```js
  4. // Settings ..
  5. {
  6. "bold_folder_labels": true,
  7. "color_scheme": "Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme",
  8. "ensure_newline_at_eof_on_save": true,
  9. "fade_fold_buttons": false,
  10. "file_exclude_patterns":
  11. [
  12. "*.pyc",
  13. "*.pyo",
  14. "*.exe",
  15. "*.dll",
  16. "*.obj",
  17. "*.o",
  18. "*.a",
  19. "*.lib",
  20. "*.so",
  21. "*.dylib",
  22. "*.ncb",
  23. "*.sdf",
  24. "*.suo",
  25. "*.pdb",
  26. "*.idb",
  27. ".DS_Store",
  28. "*.class",
  29. "*.psd",
  30. "*.db",
  31. "*.sublime-workspace",
  32. ".keep",
  33. ".byebug_history"
  34. ],
  35. "folder_exclude_patterns":
  36. [
  37. ".svn",
  38. ".git",
  39. ".hg",
  40. "CVS",
  41. ".bundle",
  42. "tmp",
  43. ".sass-cache",
  44. "_site",
  45. "node_modules",
  46. "__pycache__",
  47. ".cache"
  48. ],
  49. "font_options":
  50. [
  51. "gray_antialias",
  52. "subpixel_antialias"
  53. ],
  54. "font_size": 15,
  55. "highlight_modified_tabs": false,
  56. "ignored_packages":
  57. [
  58. "ASP",
  59. "C++",
  60. "Matlab",
  61. "OCaml",
  62. "Vintage"
  63. ],
  64. "line_padding_bottom": 2,
  65. "line_padding_top": 2,
  66. "rulers":
  67. [
  68. 100
  69. ],
  70. "tab_size": 2,
  71. "theme": "Boxy Tomorrow.sublime-theme",
  72. "translate_tabs_to_spaces": true,
  73. "trim_trailing_white_space_on_save": true,
  74. "word_wrap": "true"
  75. }
  76.  
  77. // Syntax Specific ..
  78. // yml
  79.  
  80. // These settings override both User and Default settings for the YAML syntax
  81. {
  82. "trim_automatic_white_space": false,
  83. "trim_trailing_white_space_on_save": false,
  84. }
  85.  
  86. // md
  87.  
  88. // These settings override both User and Default settings for the Markdown syntax
  89. {
  90. "trim_trailing_white_space_on_save": false,
  91. }
  92.  
  93. ```
  94.  
  95. ### Plugins
  96.  
  97. - Alignment
  98. - All Autocomplete
  99. - Better CoffeeScript
  100. - Bootstrap 3 Autocomplete
  101. - Bootstrap 3 Snippets
  102. - BracketHighlighter
  103. - Color Highlighter
  104. - ColorPicker
  105. - DocBlockr
  106. - Emmet
  107. - ERB Autocomplete
  108. - Gist
  109. - Git
  110. - GitGutter
  111. - Glue
  112. - Haml
  113. - Liquid
  114. - Markdown Preview
  115. - Pretty Ruby
  116. - PyV8
  117. - REM PX
  118. - Sass
  119. - SideBarEnhancements
  120. - SublimeLinter
  121. - SublimeLinter-contrib-eslint
  122. - SublimeREPL
  123. - Terminal
  124.  
  125. ### Themes
  126.  
  127. - Base 16 Color scheme
  128. - Boxy Theme
  129. - Material Theme
  130. - Agila Theme
  131.  
  132.  
  133. ### KeyBinding
  134.  
  135. ```js
  136.  
  137. [
  138. { "keys": ["alt+up"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": 1.0 } },
  139. { "keys": ["alt+down"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": -1.0 } },
  140. { "keys": ["super+\\"], "command": "reindent"},
  141. { "keys": ["super+shift+a"], "command": "alignment" }
  142. ]
  143. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement