Last active
August 29, 2015 14:26
-
-
Save t3hk0d3/4d3952e0f90d073a7bb2 to your computer and use it in GitHub Desktop.
Sublime Settings
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
{ | |
// A boolean specifying if folders should automatically refresh and update the sidebar. | |
// In some builds, the sidebar does not refresh when contents of project folder are updated. | |
// This setting is required to refresh the sidebar in these circumstances. | |
// false by default | |
"auto_refresh_sidebar": true, | |
// A string specifying the type of auto completion to use. Valid values are | |
// "windows" or "nix" | |
"completion_type": "nix", | |
// Setting to control if VCS management is used when moving and removing files. | |
"vcs_management": 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
[ | |
{ "keys": ["super+n"], "command": "advanced_new_file_new" }, | |
{ "keys": ["alt+super+n"], "command": "new_file" } | |
] |
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
{ | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"Dimmed Color Scheme", | |
"EasyMotion", | |
"FindKeyConflicts", | |
"Gist", | |
"Git", | |
"Github Tools", | |
"JsFormat", | |
"Markdown Extended", | |
"Package Control", | |
"RSpec", | |
"Ruby Slim", | |
"RubyTest", | |
"SideBarEnhancements", | |
"Solarized Color Scheme", | |
"SublimeCodeIntel", | |
"SublimeREPL", | |
"Theme - Spacegray", | |
"Themr", | |
"TrailingSpaces", | |
"VCS Gutter", | |
"Zen Tabs" | |
] | |
} |
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
{ | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.light.tmTheme", | |
"font_size": 12, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Markdown", | |
"Vintage" | |
], | |
"rulers": | |
[ | |
120 | |
], | |
"tab_size": 2, | |
"theme": "Spacegray Light.sublime-theme", | |
"translate_tabs_to_spaces": 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
{ | |
"erb_verify_command": "erb -xT - {file_name} | ruby -c", | |
"ruby_verify_command": "ruby -c {file_name}", | |
"run_ruby_unit_command": "ruby -Itest {relative_path}", | |
"run_single_ruby_unit_command": "ruby -Itest {relative_path} -n '{test_name}'", | |
"run_cucumber_command": "cucumber {relative_path}", | |
"run_single_cucumber_command": "cucumber {relative_path} -l{line_number}", | |
"run_rspec_command": "rspec {relative_path}", | |
"run_single_rspec_command": "rspec {relative_path}:{line_number}", | |
"ruby_unit_folder": "test", | |
"ruby_cucumber_folder": "features", | |
"ruby_rspec_folder": "spec", | |
"check_for_rbenv": true, | |
"check_for_rvm": false, | |
"check_for_bundler": true, | |
"check_for_spring": false, | |
"ruby_use_scratch" : false, | |
"save_on_run": true, | |
"ignored_directories": [".git", "vendor", "tmp"], | |
"hide_panel": false, | |
"before_callback": "", | |
"after_callback": "", | |
"theme": "Packages/RubyTest/TestConsole.hidden-tmTheme", | |
"syntax": "Packages/RubyTest/TestConsole.tmLanguage", | |
"terminal_encoding": "utf-8" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment