Last active
March 27, 2020 12:22
-
-
Save MarioRinaldi/10500400 to your computer and use it in GitHub Desktop.
Sublime Customizations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+shift+d"], "command": "find_under_expand" }, | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["f10"], "command": "clone_file" }, | |
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }, | |
{ "keys": ["f13"], "command": "reindent", "args": {"single_line": false} }, | |
{ "keys": ["super+down"], "command": "sublimerge_go_down"}, | |
{ "keys": ["super+up"], "command": "sublimerge_go_up"}, | |
{ "keys": ["f19"], "command": "sftp_upload_file" }, | |
{ "keys" : [ "option+1" ], "command" : "focus_group", "args" : { "group" : 0 } }, | |
{ "keys" : [ "option+2" ], "command" : "focus_group", "args" : { "group" : 1 } }, | |
{ "keys": ["f5"], "command": "encode_html_entities"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"line_numbers": true, | |
"gutter": true, | |
"draw_centered": false, | |
"wrap_width": 0, | |
"word_wrap": false, | |
"scroll_past_end": true | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"installed_packages": | |
[ | |
"Backbone.Marionette", | |
"Emmet", | |
"Gist", | |
"GitGutter", | |
"Lazy Backbone.js", | |
"LiveStyle", | |
"SASS Snippets", | |
"SublimeGit", | |
"Theme - Soda", | |
"Underscorejs snippets" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Determines LF (unix EOL) used to terminate each line in new files. | |
"default_line_ending": "unix", | |
// Trims white space added by auto_indent when moving the caret off the line. | |
"trim_automatic_white_space": true, | |
// Remove trailing white space on save | |
"trim_trailing_white_space_on_save": true, | |
// insert a newline in EOF | |
"ensure_newline_at_eof_on_save": true, | |
// The number of spaces a tab is considered equal to | |
"tab_size": 4, | |
// Size of font | |
"font_size": 12.0, | |
// Makes tabs with modified files more visible | |
"highlight_modified_tabs": true, | |
// Display file encoding in the status bar | |
"show_encoding": true, | |
// Display line endings in the status bar | |
"show_line_endings": true, | |
// Draw all white space | |
"draw_white_space": "all", | |
// Show the full path to files in the title bar | |
"show_full_path":true, | |
// Will highlight any line with a caret | |
"highlight_line": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment