diff --git a/README.md b/README.md index 4b8145c..a2ed4bf 100644 --- a/README.md +++ b/README.md @@ -4,26 +4,34 @@ Simple way to configure fresh installation of Sublime Text 3 Config includes: -- [Soda Theme](http://buymeasoda.github.com/soda-theme/) -- Packages for work with GIT, CoffeeScript, SASS, LESS, Slim and HAML -- [ChangeQuotes](https://github.com/colinta/SublimeChangeQuotes). Quick changing quotes with `alt+shift+'`. -- [AdvancedNewFile](https://packagecontrol.io/packages/AdvancedNewFile). Quick file creating with `opt+cmd+n`. -- [All Autocomplete](https://packagecontrol.io/packages/All%20Autocomplete). All open files are searched for autocompletion candidates. +- [Ayu Theme](https://packagecontrol.io/packages/ayu) and [A File Icon](https://github.com/ihodev/a-file-icon) – nice theme, and icons. +- Packages for work with GIT, ES6, CoffeeScript, SASS, LESS, Slim and HAML +- [ChangeQuotes](https://github.com/colinta/SublimeChangeQuotes) – quick changing quotes with `alt+shift+'`. +- [AdvancedNewFile](https://packagecontrol.io/packages/AdvancedNewFile) – quick file creating with `opt+cmd+n`. +- [Quick File Move](https://packagecontrol.io/packages/Quick%20File%20Move) – help you move or rename your files. +- [All Autocomplete](https://packagecontrol.io/packages/All%20Autocomplete) – will open files are searched for autocompletion candidates. +- [Rails Go to Spec](https://packagecontrol.io/packages/RailsGoToSpec) – from a .rb file this plug-in will open the relevant spec with `cmd+shift+y`. +- [SideBarEnhancements](https://github.com/titoBouzout/SideBarEnhancements) – provides enhancements to the operations on Sidebar of Files and Folders for Sublime Text. +- [Markdown Preview](https://packagecontrol.io/packages/Markdown%20Preview) – preview and build your markdown files quickly in your web browser. + - `alt+up` and `alt+down` for jumping between empty lines (paragraphs) ## Setup 1. Get and Install [Sublime Text 3](http://www.sublimetext.com/3) into `/Applications` folder. +2. Run install script -2. Paste that at a Terminal prompt: - -```sh +``` +brew install sublime-text curl -fsSL https://raw.github.com/fs/sublime-bootstrap/master/bin/install | sh ``` +3. Wait few seconds, make sure Packages installed, you will need to restart Sublime several times +4. Download and install [Roboto Mono](https://fonts.google.com/specimen/Roboto+Mono?selection.family=Roboto+Mono) fonts. + ## Credits -Sublime Bootstrap is maintained by [Nickolay Abdrafikov](http://github.com/nickolayabdrafikov). +Sublime Bootstrap is maintained by [Timur Vafin](http://github.com/timurvafin). It was written by [Flatstack](http://www.flatstack.com) with the help of our [contributors](http://github.com/fs/sublime-bootstrap/contributors). diff --git a/settings/Package Control.sublime-settings b/settings/Package Control.sublime-settings index 451d1c5..c547c42 100644 --- a/settings/Package Control.sublime-settings +++ b/settings/Package Control.sublime-settings @@ -2,22 +2,24 @@ "auto_upgrade_last_run": null, "installed_packages": [ - "ChangeQuotes", + "A File Icon", + "AdvancedNewFile", + "All Autocomplete", + "ayu", + "Babel", "Better CoffeeScript", + "ChangeQuotes", "Cucumber", "Git", "GitGutter", "Haml", "LESS", + "Markdown Preview", "Package Control", "Quick File Move", + "RailsGoToSpec", "Ruby Slim", "Sass", - "Theme - Soda", - "AdvancedNewFile", - "All Autocomplete", - "Side​Bar​Enhancements", - "Babel", - "A File Icon" + "SideBarEnhancements" ] } diff --git a/settings/Preferences.sublime-settings b/settings/Preferences.sublime-settings index 5267261..f4dcc45 100644 --- a/settings/Preferences.sublime-settings +++ b/settings/Preferences.sublime-settings @@ -1,5 +1,5 @@ { - "color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme", + "color_scheme": "Packages/ayu/ayu-mirage.tmTheme", "drag_text": false, "draw_white_space": "all", "ensure_newline_at_eof_on_save": true, @@ -26,10 +26,11 @@ 120 ], "show_full_path": true, - "soda_classic_tabs": false, "tab_size": 2, - "theme": "Soda Light 3.sublime-theme", + "theme": "ayu-mirage.sublime-theme", "translate_tabs_to_spaces": true, "trim_trailing_white_space_on_save": true, - "folder_exclude_patterns": [".git", ".hg", "tmp"] + "folder_exclude_patterns": [".git", ".hg", "tmp"], + "ui_separator": false, + "ui_font_size_small": true }