Skip to content

Instantly share code, notes, and snippets.

@ttomdewit
Created October 16, 2015 16:36
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 ttomdewit/0a529a23d00d68aa63d2 to your computer and use it in GitHub Desktop.
Save ttomdewit/0a529a23d00d68aa63d2 to your computer and use it in GitHub Desktop.
{
"bold_folder_labels": true,
"close_windows_when_empty": false,
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"draw_indent_guides": true,
"draw_white_space": "selection",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"*.lib",
"*.log",
"apple-touch-icon*",
"favicon.ico"
],
"findreplace_small": true,
"folder_exclude_patterns":
[
".git",
".bundle",
".sass-cache",
".svn",
".hg"
],
"font_face": "Source code pro",
"font_options":
[
"gray_antialias"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"open_files_in_new_window": false,
"remember_open_files": true,
"remember_open_folders": true,
"scroll_past_end": true,
"scroll_speed": 2,
"show_full_path": true,
"sidebar_default": true,
"tab_size": 4,
"tabs_medium": true,
"theme": "predawn.sublime-theme",
"translate_tabs_to_spaces": true,
"use_simple_full_screen": true,
"wide_caret": true
}
@ttomdewit
Copy link
Author

{
    "bold_folder_labels": true,
    "close_windows_when_empty": false,
    "color_scheme": "Packages/User/SublimeLinter/Facebook (SL).tmTheme",
    "draw_indent_guides": false,
    "ensure_newline_at_eof_on_save": true,
    "font_face": "Fira Code",
    "font_options":
    [
        "gray_antialias"
    ],
    "font_size": 15,
    "highlight_line": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "indent_guide_options":
    [
        "draw_normal",
        "draw_active"
    ],
    "line_numbers": false,
    "line_padding_bottom": 5,
    "line_padding_top": 5,
    "margin": 0,
    "open_files_in_new_window": false,
    "overlay_scroll_bars": "enabled",
    "remember_full_screen": true,
    "remember_open_files": true,
    "remember_open_folders": true,
    "scroll_past_end": true,
    "scroll_speed": 2,
    "show_full_path": true,
    "show_panel_on_build": false,
    "tab_size": 4,
    "theme": "Material-Theme.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "use_simple_full_screen": true,
    "word_wrap": false
}

@ttomdewit
Copy link
Author

export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting

export MAMP_PHP=/Applications/MAMP/bin/php/php5.6.10/bin
export PATH="$MAMP_PHP:$PATH"


# Custom alias
alias wpinstall="~/scripts/wpinstall.sh"

alias cl='clear'

alias vm='homestead ssh'

alias ga='git add -A'
alias gp='git push'
alias gs='git status'
alias gm='git commit -m'

export PATH="$PATH:$HOME/.composer/vendor/bin"

. `brew --prefix`/etc/profile.d/z.sh

source ~/.oh-my-zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

@ttomdewit
Copy link
Author

[
    { "keys": ["f9"], "command": "expand_fqcn" },
    { "keys": ["f10"], "command": "find_use" },
    { "keys": ["f7"], "command": "insert_php_constructor_property" },
]

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