Skip to content

Instantly share code, notes, and snippets.

@tiagoamaro
Last active December 15, 2015 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiagoamaro/5268237 to your computer and use it in GitHub Desktop.
Save tiagoamaro/5268237 to your computer and use it in GitHub Desktop.
Sublime Text 3 Configuration
{
"bold_folder_labels": true,
"caret_style": "wide",
"color_scheme": "Packages/Decent Color Scheme/Samuel's decent.tmTheme",
"detect_indentation": true,
"fade_fold_buttons": false,
"font_face": "Source Code Pro",
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"show_full_path": true,
"spell_check": true,
"theme": "Centurion.sublime-theme"
}
  • AlignTab
  • All Autocomplete
  • BracketHighlighter
  • Centurion
  • CoffeeScript
  • ColorHighlighter
  • ColorPicker
  • Decent Color Scheme
  • Emmet
  • ERB Snippets
  • Highlight
  • HTML-CSS-JS Prettify
  • Modific
  • OmniMarkupPreviewer
  • ProductiveSnippetsRuby
  • SetiUI-Icons-Sublime - SetiUI Icons on any Theme
  • Text Pastry
  • TodoReview
  • Trailing Spaces
[
{ "keys": ["ctrl+shift+d"], "command": "find_all_under" },
{ "keys": ["ctrl+shift+t"], "command": "delete_trailing_spaces" },
{ "keys": ["f12"], "command": "goto_definition" },
{ "keys": ["option+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["super+b"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["super+k"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+c"], "command": "color_pick" },
{ "keys": ["super+shift+k"], "command": "reindent"},
{ "keys": ["super+shift+r"], "command": "reveal_in_side_bar"},
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }
]
[
{ "keys": ["ctrl+shift+d"], "command": "find_all_under" },
{ "keys": ["ctrl+alt+r"], "command": "delete_trailing_spaces" },
{ "keys": ["alt+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+alt+k"], "command": "reindent"},
{ "keys": ["ctrl+b"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+k"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+shift+c"], "command": "color_pick" },
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{ "keys": ["ctrl+backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["f12"], "command": "goto_definition" },
{ "keys": ["ctrl+alt+d"], "command": "duplicate_line" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment