diff --git a/Rakefile b/Rakefile index 833249f..a62eb6c 100644 --- a/Rakefile +++ b/Rakefile @@ -52,14 +52,16 @@ namespace :install do package_control = "#{ENV['HOME']}/Library/Application Support/Sublime Text 2/Packages/User/Package Control.sublime-settings" packages = JSON.parse(File.read(package_control)) - packages["installed_packages"] |= %w[ - CTags - Git - LaTeXTools - SideBarEnhancements - SublimeTODO - Theme - Soda - TODO Control + packages["installed_packages"] = [ + "AdvancedNewFile", + "CTags", + "Git", + "LaTeXTools", + "SideBarEnhancements", + "SublimeTODO", + "Theme - Soda", + "TODO Control", + "Tomorrow Color Schemes" ] File.open(package_control, "w") do |f| diff --git a/sublime/Preferences.sublime-settings b/sublime/Preferences.sublime-settings index d7079e3..c9a1096 100644 --- a/sublime/Preferences.sublime-settings +++ b/sublime/Preferences.sublime-settings @@ -1,11 +1,34 @@ { - "auto_complete_commit_on_tab": true, - "bold_folder_labels": true, - "color_scheme": "Packages/Color Scheme - Default/Tomorrow-Night.tmTheme", - "draw_minimap_border": true, + "theme": "Soda Light.sublime-theme", + "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", + + "font_face": "Inconsolata-dz", + "font_size": 12, + + "tab_size": 2, + "translate_tabs_to_spaces": true, + "trim_trailing_white_space_on_save": true, "ensure_newline_at_eof_on_save": true, - "file_exclude_patterns": - [ + "auto_complete_commit_on_tab": true, + + "hot_exit": false, + "remember_open_files": false, + "save_on_focus_lost": false, + + "bold_folder_labels": true, + "draw_minimap_border": true, + "gutter": true, + "highlight_line": true, + "highlight_modified_tabs": true, + "line_padding_bottom": 0.5, + "line_padding_top": 0.5, + + "preview_on_click": true, + "detect_slow_plugins": false, + + "rulers": [78], + + "file_exclude_patterns": [ ".DS_Store", ".tags*", "*.pyc", @@ -28,8 +51,7 @@ "*.db", "*.pdf" ], - "folder_exclude_patterns": - [ + "folder_exclude_patterns": [ "data", ".git", ".svn", @@ -41,29 +63,5 @@ ".sass-cache", ".bundle", ".rbx" - ], - "font_face": "Inconsolata-dz", - "font_size": 12, - "gutter": true, - "highlight_line": true, - "highlight_modified_tabs": true, - "hot_exit": false, - "ignored_packages": - [ - "Vintage" - ], - "line_padding_bottom": 0.5, - "line_padding_top": 0.5, - "preview_on_click": true, - "remember_open_files": false, - "rulers": - [ - 78 - ], - "save_on_focus_lost": false, - "tab_size": 2, - "theme": "Soda Light.sublime-theme", - "translate_tabs_to_spaces": true, - "trim_trailing_white_space_on_save": true, - "detect_slow_plugins": false + ] }