Skip to content

Instantly share code, notes, and snippets.

@pjho
Last active September 20, 2017 02:59
Show Gist options
  • Save pjho/09871934cf500177b5b20310357f3829 to your computer and use it in GitHub Desktop.
Save pjho/09871934cf500177b5b20310357f3829 to your computer and use it in GitHub Desktop.
Setup Sublime

Add subl command to command line > ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl

Install

  • Sidebar Enhancements
  • Soda Theme Dark
  • Sass/Scss Syntax
  • Babel Syntax
  • Emmet
  • Sublime Linter
  • Sublime Linter-eslint
[
{ "keys": ["super+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} },
{ "keys": ["alt+k"], "command": "toggle_shown_spaces" },
{ "keys": ["ctrl+shift+'"], "command": "change_quotes" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" }
]
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
"detect_indentation": false,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"file_exclude_patterns":
[
"*_____.db",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
"__.git",
".idea",
"__node_modules"
],
"font_face": "Monaco",
"font_size": 14,
"highlight_line": true,
"ignored_packages":
[
"SublimeLinter-jshint"
],
"indent_to_bracket": false,
"line_padding_bottom": 2,
"line_padding_top": 2,
"rulers":
[
100
],
"save_on_focus_lost": false,
"scroll_past_end": true,
"show_full_path": true,
"tab_size": 2,
"theme": "SoDaReloaded Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment