View gist:ba523e34425c612c2197
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gentoo prompt theme | |
prompt_gentoo_help () { | |
cat <<'EOF' | |
This prompt is color-scheme-able. You can invoke it thus: | |
prompt gentoo [<promptcolor> [<usercolor> [<rootcolor>]]] | |
EOF | |
} |
View prompt_gentoo_setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gentoo prompt theme | |
prompt_gentoo_help () { | |
cat <<'EOF' | |
This prompt is color-scheme-able. You can invoke it thus: | |
prompt gentoo [<promptcolor> [<usercolor> [<rootcolor>]]] | |
EOF | |
} |
View Preferences.sublime-settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", |
View Default (Linux).sublime-keymap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["f8"], "command": "build" }, | |
{ "keys": ["ctrl+alt+f"], "command": "show_panel", "args": { "panel": "find_in_files" } }, | |
{ "keys": ["ctrl+d"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" }, | |
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" }, | |
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace"} }, | |
{ "keys": ["ctrl+shift+r"], "command": "replace_next" }, |
View install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# installing erlang on ubuntu's | |
VERSION="R15B01" | |
sudo apt-get install build-essential libncurses5-dev openssl libssl-dev | |
sudo mkdir -p /opt/erlang/ | |
curl -O https://raw.github.com/spawngrid/kerl/master/kerl && chmod a+x kerl | |
sudo mv kerl /opt/erlang/ |
View .zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HISTFILE=~/.histfile | |
HISTSIZE=500000 | |
SAVEHIST=500000 | |
unsetopt beep | |
bindkey -e | |
stty -ixon | |
zstyle :compinstall filename '~/.zshrc' | |
autoload -Uz compinit promptinit |