This file contains hidden or 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 | |
} |
This file contains hidden or 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 | |
} |
This file contains hidden or 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", |
This file contains hidden or 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" }, |
This file contains hidden or 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/ |
This file contains hidden or 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 |