Skip to content

Instantly share code, notes, and snippets.

@mcauser
Last active December 24, 2015 21:49
Show Gist options
  • Select an option

  • Save mcauser/6867951 to your computer and use it in GitHub Desktop.

Select an option

Save mcauser/6867951 to your computer and use it in GitHub Desktop.
Sublime.md

Sublime Text 2 Config

Add subl cli support

ln -sf /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin

Plugins

Preferences > Settings - User

{
  "bold_folder_labels": true,
  "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
  "enable_tab_scrolling": false,
  "fade_fold_buttons": true,
  "folder_exclude_patterns": [".svn", ".git", ".hg", "CVS",".sass-cache",".tmp","node_modules"],
  "font_size": 12.0,
  "highlight_line": true,
  "highlight_modified_tabs": true,
  "ignored_packages": ["Vintage"],
  "overlay_scroll_bars": "enabled",
  "scroll_past_end": true,
  "showErrorWithWindow": false,
  "show_full_path": true,
  "show_tab_close_buttons": false,
  "trim_automatic_white_space": false,
  "trim_trailing_white_space_on_save": false,
  "word_wrap": false
}

Preferences > Key Bindings - User

[
  { "keys": ["ctrl+t"], "command": "side_bar_new_file2" },
  { "keys": ["f2"], "command": "side_bar_rename" },
  { "keys": ["ctrl+shift+d"], "command": "toggle_trailing_spaces" },
  { "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" },
  { "keys": ["super+k", "super+t"], "command": "title_case" },
  { "keys": ["super+shift+r"], "command": "toggle_setting", "args": {"setting": "word_wrap"} }
]

Preferences > Package Settings > Less2Css > Settings - User

{
	"autoCompile": false,
	"minify": false,
	"ignorePrefixedFiles": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment