Skip to content

Instantly share code, notes, and snippets.

@colinrotherham
Last active December 12, 2018 11:55
Show Gist options
  • Save colinrotherham/f47b89c016eddfb366ab to your computer and use it in GitHub Desktop.
Save colinrotherham/f47b89c016eddfb366ab to your computer and use it in GitHub Desktop.
Latest settings, switch to Material theme
{
"auto_find_in_selection": true,
"binary_file_patterns":
[
"*.min.js",
"*.min.css",
"*.sql",
"*.map",
"node_modules/",
"bower_components/"
],
"caret_extra_width": 1,
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"convert_tabspaces_on_save": true,
"detect_indentation": true,
"draw_indent_guides": true,
"draw_minimap_border": true,
"enable_tab_scrolling": false,
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".git",
".bundle",
".sass-cache",
".svn",
".hg"
],
"font_face": "SF Mono Light",
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"match_brackets_angle": true,
"material_theme_contrast_mode": true,
"material_theme_panel_separator": true,
"material_theme_tree_headings": true,
"open_files_in_new_window": false,
"preview_on_click": false,
"scroll_past_end": true,
"scroll_speed": 5.0,
"show_full_path": false,
"tab_size": 2,
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@%^&*|+=[]{}`~?",
"word_wrap": false
}
@colinrotherham
Copy link
Author

With the extra packages…

  1. JavaScriptNext - ES6 Syntax
  2. Expand Tabs On Save
  3. Syntax Highlighting for Sass
  4. “Specials Board” colour theme (https://github.com/lamotta/specialsboard)
  5. “Soda Light” UI theme

The nice icons can be found here:
https://github.com/facelessuser/Aprosopo/tree/master/icons

To use them with your setup, create a user override for the theme you’re using and add these lines (update paths to where the icons are located):

[
    // Sidebar folder closed
    {
        "class": "icon_folder",
        "layer0.texture": "User/Theme - Soda Light/icons/folder.png",
        "layer0.opacity": 1.0,
        "content_margin": [8, 8]
    },

    // Sidebar folder open
    {
        "class": "icon_folder",
        "parents": [{"class": "tree_row", "attributes": ["expanded"]}],
        "layer0.texture": "User/Theme - Soda Light/icons/folder_open.png",
    },
]

@colinrotherham
Copy link
Author

Switched to the "Input Mono" typeface found here:
http://input.fontbureau.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment