Skip to content

Instantly share code, notes, and snippets.

@furkanayhan
Last active October 26, 2017 11:19
Show Gist options
  • Save furkanayhan/11054937 to your computer and use it in GitHub Desktop.
Save furkanayhan/11054937 to your computer and use it in GitHub Desktop.
My Sublime Text 3 Settings
[
{ "keys": ["super+h"], "command": "show_panel", "args": {"panel": "replace"} },
{"keys": ["super+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["super+shift+."], "command": "erb", "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.ruby, text.haml, source.yaml, source.css, source.scss, source.js, source.coffee" }
]
},
{ "keys": ["alt+d"], "command": "goto_definition" },
{ "keys": ["alt+g"], "command": "jump_back" }
]
Babel
BracketHighlighter
ERB Autocomplete
HTML-CSS-JS Prettify
Material Theme
Material Theme - Appbar
Sass
SideBarEnhancements
TrailingSpaces
{
"auto_complete_selector": "text.html.erb, source - comment, meta.tag - punctuation.definition.tag.begin",
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.js.map",
"*.map",
"*.xslt",
"*.dump",
"*.log"
],
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"tmp",
"bower_components",
"node_modules",
"dist"
],
"font-face": "Monaco",
"font_size": 14.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"material_theme_accent_indigo": true,
"material_theme_compact_sidebar": true,
"material_theme_contrast_mode": true,
"material_theme_disable_fileicons": false,
"material_theme_panel_separator": true,
"material_theme_small_statusbar": true,
"material_theme_small_tab": true,
"material_theme_tabs_autowidth": true,
"material_theme_tabs_separator": true,
"material_theme_tree_headings": true,
"overlay_scroll_bars": "enabled",
"rulers":
[
100
],
"shift_tab_unindent": true,
"show_encoding": true,
"tab_size": 2,
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment