Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. // Custom settings for "User/Preferences.sublime-settings"
  2.  
  3. {
  4.  
  5. // The number of spaces a tab is considered equal to
  6. "tab_size": 4,
  7.  
  8. // Set to true to insert spaces when tab is pressed
  9. "translate_tabs_to_spaces": false,
  10.  
  11. // Disables horizontal scrolling if enabled.
  12. // May be set to true, false, or "auto", where it will be disabled for
  13. // source code, and otherwise enabled.
  14. "word_wrap": false,
  15.  
  16. // If enabled, will highlight any line with a caret
  17. "highlight_line": true,
  18.  
  19. // Set to false to disable scrolling past the end of the buffer.
  20. // On OS X, this value is overridden in the platform specific settings, so
  21. // you'll need to place this line in your user settings to override it.
  22. "scroll_past_end": true,
  23.  
  24. // Set to true to removing trailing white space on save
  25. "trim_trailing_white_space_on_save": true,
  26.  
  27. // Set to true to ensure the last line of the file ends in a newline
  28. // character when saving
  29. "ensure_newline_at_eof_on_save": true
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement