Skip to content

Instantly share code, notes, and snippets.

@manavid
Last active August 22, 2017 19:19
Show Gist options
  • Save manavid/923ea44c5e006f5f65304f0366b99a6e to your computer and use it in GitHub Desktop.
Save manavid/923ea44c5e006f5f65304f0366b99a6e to your computer and use it in GitHub Desktop.

Revisions

  1. manavid revised this gist Aug 22, 2017. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions key-binding.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    [
    { "keys": ["ctrl+shift+."], "command": "erb" },
    { "keys": ["super+v"], "command": "paste_and_indent" },
    { "keys": ["super+shift+v"], "command": "paste" },
    { "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }
    ]
  2. manavid created this gist Aug 22, 2017.
    48 changes: 48 additions & 0 deletions sublime-settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,48 @@
    {
    "bold_folder_labels": true,
    "caret_style": "phase",
    "color_scheme": "Packages/Colorsublime - Themes/Blackboard.tmTheme",
    "file_exclude_patterns":
    [
    "*.lo",
    "*.so",
    "*.la",
    "*.a",
    "*.o",
    ".DS_Store",
    "*.Plo",
    "*.log"
    ],
    "folder_exclude_patterns":
    [
    ".svn",
    ".git",
    ".hg",
    "CVS"
    ],
    "font_face": "Monaco",
    "font_options":
    [
    "gray_antialias1",
    "subpixel_antialias1"
    ],
    "font_size": 12.0,
    "highlight_line": true,
    "ignored_packages":
    [
    "Vintage"
    ],
    "line_padding_bottom": 0.5,
    "line_padding_top": 0.5,
    "rulers":
    [
    79
    ],
    "soda_classic_tabs": true,
    "soda_folder_icons": false,
    "tab_size": 2,
    "theme": "Soda Light 3.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "use_tab_stops": true
    }