Skip to content

Instantly share code, notes, and snippets.

@MXMLN-sec
Last active February 19, 2017 13:42
Show Gist options
  • Save MXMLN-sec/7bb963bf58af9e7999063131a7bdd3ee to your computer and use it in GitHub Desktop.
Save MXMLN-sec/7bb963bf58af9e7999063131a7bdd3ee to your computer and use it in GitHub Desktop.
Sublime Text settings
{
"font_size": 10,
// Spacing between the gutter and the text
"margin": 0,
// Set to true to turn spell checking on by default
"spell_check": true,
// The number of spaces a tab is considered equal to
"tab_size":2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": false,
// Disables horizontal scrolling if enabled.
// May be set to true, false, or "auto", where it will be disabled for
// source code, and otherwise enabled.
"word_wrap": false,
// Word list to use for spell checking
"dictionary": "Packages/Language - English/en_GB.dic",
// Always visualise the viewport on the minimap, as opposed to only
// showing it on mouse over
"always_show_minimap_viewport": true,
// If enabled, will highlight any line with a caret
"highlight_line": true,
// Exiting the application with hot_exit enabled will cause it to close
// immediately without prompting. Unsaved modifications and open files will
// be preserved and restored when next starting.
//
// Closing a window with an associated project will also close the window
// without prompting, preserving unsaved changes in the workspace file
// alongside the project.
"hot_exit": false,
"remember_open_files": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment