Skip to content

Instantly share code, notes, and snippets.

@ellipse42-archived
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save ellipse42-archived/0fca59c6d1464772b997 to your computer and use it in GitHub Desktop.

Select an option

Save ellipse42-archived/0fca59c6d1464772b997 to your computer and use it in GitHub Desktop.
Sublime Config
[
{
"keys": [
"alt+j"
],
"command": "move",
"args": {
"by": "characters",
"forward": false
}
},
{
"keys": [
"alt+l"
],
"command": "move",
"args": {
"by": "characters",
"forward": true
}
},
{
"keys": [
"alt+i"
],
"command": "move",
"args": {
"by": "lines",
"forward": false
}
},
{
"keys": [
"alt+k"
],
"command": "move",
"args": {
"by": "lines",
"forward": true
}
},
{
"keys": [
"alt+n"
],
"command": "move_to",
"args": {
"to": "bol",
"extend": false
}
},
{
"keys": [
"alt+m"
],
"command": "move_to",
"args": {
"to": "eol",
"extend": false
}
},
{
"keys": [
"alt+h"
],
"command": "insert",
"args": {
"characters": "\n"
}
},
{
"keys": [
"alt+o"
],
"command": "left_delete"
}
]
{
"auto_complete": false,
"caret_style": "solid",
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"*.pid",
"*.pyc"
],
"find_selected_text": true,
"fold_buttons": false,
"folder_exclude_patterns":
[
".git",
"__pycache__",
"env",
"env3"
],
"font_face": "Ubuntu Mono",
"font_options":
[
"subpixel_antialias",
"no_bold"
],
"font_size": 9,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 0,
"line_padding_top": 0,
"rulers":
[
72,
79
],
"scroll_past_end": false,
"show_minimap": false,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_wrap": true,
"wrap_width": 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment