Last active
December 10, 2015 17:28
-
-
Save insoul/4468333 to your computer and use it in GitHub Desktop.
Preference for Sublime Text 2. Install Package Control and add next packages. Soda theme and color scheme, SublimeLinter, Git
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
[ | |
{ "keys": ["super+ctrl+left"], "command": "next_view_in_stack" }, | |
{ "keys": ["super+ctrl+right"], "command": "prev_view_in_stack" } | |
] |
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
{ | |
// global settings | |
"theme": "Soda Light 3.sublime-theme", | |
"folder_exclude_patterns": | |
[ | |
".idea", | |
".bundle", | |
".git", | |
"log" | |
], | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
".gitmodules", | |
".git", | |
".gitkeep", | |
"*.tar.gz", | |
"*.zip", | |
"*.jar", | |
"*.rpm", | |
"*.gem" | |
], | |
// file settings | |
"auto_indent": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"use_tab_stops": true, | |
"trim_automatic_white_space": true, | |
"detect_indentation": true, | |
"draw_white_space": "selection", | |
"trim_trailing_white_space_on_save": false, | |
// visual settings | |
"color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
"font_size": 10, | |
"font_face": "Menlo", | |
"font_options": "no_antialias", | |
"gutter": true, | |
"rulers": [100], | |
// "line_padding_top": 4, | |
// "line_padding_bottom": 0, | |
"scroll_past_end": true, | |
"line_numbers": true, | |
"word_wrap": false, | |
"wrap_width": 100, | |
"indent_subsequent_lines": false, | |
// automatic behaviors | |
"auto_match_enabled": true, | |
"find_selected_text": true, | |
"ensure_newline_at_eof_on_save": false, | |
// others | |
"preview_binary_files": false, | |
"tree_animation_enabled": true, | |
// package control | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
// git | |
"git_binary": "/usr/local/bin/git", | |
"git_command": | |
[ | |
"/usr/local/bin/git" | |
], | |
// soda theme | |
"soda_folder_icons": true, | |
// sublimelinter | |
"sublimelinter_executable_map": | |
{ | |
"ruby": "rvm-auto-ruby" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment