1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-06 00:53:23 +00:00

Update Sublime settings

This commit is contained in:
Holger Just 2012-12-14 16:15:27 +01:00
parent 0002d63aef
commit a9c71b88ea
2 changed files with 41 additions and 41 deletions

View File

@ -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|

View File

@ -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
]
}