From f63aad9aae91491ab9afd84e45a5eb174207ba7b Mon Sep 17 00:00:00 2001 From: Timur Vafin Date: Tue, 3 Oct 2017 15:51:54 +0300 Subject: [PATCH 1/3] Change Soda to Ayu --- README.md | 15 ++++++++++----- settings/Package Control.sublime-settings | 16 +++++++++------- settings/Preferences.sublime-settings | 9 +++++---- 3 files changed, 24 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 4b8145c..9796319 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,16 @@ 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) with [Roboto Mono](https://www.google.com/fonts/specimen/Roboto+Mono) and [A File Icon](https://github.com/ihodev/a-file-icon) – nice theme, icons and font. +- 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 diff --git a/settings/Package Control.sublime-settings b/settings/Package Control.sublime-settings index 451d1c5..104a749 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" + "Side​Bar​Enhancements" ] } 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 } From 8a7a5fd248944a8c68b2b04877f151753da84025 Mon Sep 17 00:00:00 2001 From: Timur Vafin Date: Tue, 10 Oct 2017 17:22:16 +0300 Subject: [PATCH 2/3] =?UTF-8?q?Add=20missing=20comma=20and=20remove=20hidd?= =?UTF-8?q?en=20chars=20in=20`Side=E2=80=8BBar=E2=80=8BEnhancements`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- settings/Package Control.sublime-settings | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/Package Control.sublime-settings b/settings/Package Control.sublime-settings index 104a749..c547c42 100644 --- a/settings/Package Control.sublime-settings +++ b/settings/Package Control.sublime-settings @@ -2,7 +2,7 @@ "auto_upgrade_last_run": null, "installed_packages": [ - "A File Icon" + "A File Icon", "AdvancedNewFile", "All Autocomplete", "ayu", @@ -20,6 +20,6 @@ "RailsGoToSpec", "Ruby Slim", "Sass", - "Side​Bar​Enhancements" + "SideBarEnhancements" ] } From db21733213aedc7d100c4f5ddce86634619154c8 Mon Sep 17 00:00:00 2001 From: Timur Vafin Date: Tue, 10 Oct 2017 17:57:44 +0300 Subject: [PATCH 3/3] Remove font metion --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9796319..a2ed4bf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Simple way to configure fresh installation of Sublime Text 3 Config includes: -- [Ayu Theme](https://packagecontrol.io/packages/ayu) with [Roboto Mono](https://www.google.com/fonts/specimen/Roboto+Mono) and [A File Icon](https://github.com/ihodev/a-file-icon) – nice theme, icons and font. +- [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`. @@ -19,16 +19,19 @@ Config includes: ## 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).