-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04f4a8e
commit d6da1b3
Showing
2 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"install": "messages/install.txt", | ||
"1.0.1": "messages/1.0.1.txt" | ||
"1.0.1": "messages/1.0.1.txt", | ||
"1.0.2": "messages/1.0.2.txt" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
============================== | ||
|
||
Thanks for installing Predawn! | ||
|
||
============================== | ||
|
||
1.0.2 is an attempt to fix installation issues on ST2. Thanks for your patience. Sorry. | ||
|
||
============================== | ||
|
||
To activate the theme, add or replace your current theme settings with the code below. | ||
|
||
{ | ||
"theme": "predawn.sublime-theme", | ||
"color_scheme": "Packages/Predawn/predawn.tmTheme" | ||
} | ||
|
||
|
||
====================================== | ||
|
||
Also, some other settings that I like: | ||
|
||
=====================================+ | ||
|
||
// Typography | ||
|
||
"font_face": "Source Code Pro", | ||
"font_size": 14, | ||
"font_options": ["no_round"], | ||
"highlight_line": true, | ||
"caret_extra_width": 1, | ||
"caret_style": "phase", | ||
"word_wrap": false, | ||
|
||
// Whitespace, Matching, Copy & Auto-Complete | ||
|
||
"copy_with_empty_selection": false, | ||
"drag_text": false, | ||
"match_brackets_content": false, | ||
"match_selection": false, | ||
"match_tags": false, | ||
"translate_tabs_to_spaces": true, | ||
"trim_trailing_white_space_on_save": true, | ||
|
||
// Interface & Behavior | ||
|
||
"sidebar_default": true, // Replace default with xsmall, small, medium, large or xlarge | ||
"close_windows_when_empty": false, | ||
"draw_minimap_border": true, | ||
"enable_tab_scrolling": false, | ||
"overlay_scroll_bars": "enabled", | ||
"open_files_in_new_window": false, | ||
"preview_on_click": false, | ||
"scroll_past_end": true, | ||
"scroll_speed": 5.0, | ||
"show_full_path": false, |