Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
16 changes: 9 additions & 7 deletions settings/Package Control.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
9 changes: 5 additions & 4 deletions settings/Preferences.sublime-settings
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
}