Skip to content

Instantly share code, notes, and snippets.

@danielwrobert
Last active August 29, 2015 13:56
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 danielwrobert/9040993 to your computer and use it in GitHub Desktop.
Save danielwrobert/9040993 to your computer and use it in GitHub Desktop.
My current Sublime Text settings. Using Material Theme (https://github.com/equinusocio/material-theme) with Solarized Dark color scheme.
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Solarized (Dark) (SL).tmTheme",
// "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"draw_white_space": "all",
"fade_fold_buttons": false,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".sass-cache"
],
"font_face": "Menlo",
"font_options":
[
"gray_antialias"
],
"font_size": 14.0,
"highlight_modified_tabs": true,
"ignored_packages":
[
],
"line_padding_bottom": 3,
"line_padding_top": 3,
//"theme": "Seti.sublime-theme",
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"vintage_ctrl_keys": true,
"vintage_start_in_command_mode": true,
"word_wrap": true,
"overlay_scroll_bars": "enabled",
"always_show_minimap_viewport": true,
// Highlight active indent
"indent_guide_options": [ "draw_normal", "draw_active" ]
}
[
// Vintage Vim Movements
// {"keys": ["ctrl+d"], "command": "scroll_lines", "args": {"amount": -17.0}, "context": [{ "key": "setting.command_mode" }]},
{ "keys": ["ctrl+d"], "command": "move", "args": {"by": "pages", "forward": true, "amount": 0.5} },
{ "keys": ["ctrl+alt+d"], "command": "dpaste" },
{ "keys": ["ctrl+y"], "command": "scroll_lines", "args": {"amount": 1.0}, "context": [{ "key": "setting.command_mode" }] },
{ "keys": ["ctrl+e"], "command": "scroll_lines", "args": {"amount": -1.0}, "context": [{"key": "setting.command_mode"}] },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment