Created
January 25, 2014 23:01
-
-
Save grogy/8625070 to your computer and use it in GitHub Desktop.
Sublime Text - custom settings.
This file contains hidden or 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
[ | |
// multi-cursor | |
{ | |
"keys": ["ctrl+shift+up"], | |
"command": "select_lines", | |
"args": {"forward": false} | |
}, | |
{ | |
"keys": ["ctrl+shift+down"], | |
"command": "select_lines", | |
"args": {"forward": true} | |
} | |
] |
This file contains hidden or 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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_face": "Ubuntu Mono", | |
"font_size": 17, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"remember_open_files": false, | |
"tab_size": 4, | |
"translate_tabs_to_spaces": false, | |
"trim_trailing_white_space_on_save": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment