my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

fix up dots for nostromo

+8 -4
+7 -3
.shinit
··· 4 4 5 5 export EDITOR=vim 6 6 export PS1='$(short-pwd)$ ' 7 - export PATH="$HOME/bin/$(hostname -s):$HOME/bin:$PATH" 7 + export PATH="$HOME/bin/$(hostname):$HOME/bin:$PATH" 8 8 export HISTFILESIZE=10000 9 9 10 10 export PASH_KEYID=j3s@c3f.net ··· 15 15 alias vi=vim 16 16 alias ls='CLICOLOR=1 ls' 17 17 18 + # mksh 19 + if echo "$SHELL" | grep -q "mksh"; then 20 + bind '^L=clear-screen' 21 + export HISTFILE="$HOME/.mksh-history" 22 + fi 23 + 18 24 # bby 19 25 if [ "$(uname -s)" == "Darwin" ]; then 20 - bind '^L=clear-screen' 21 26 alias cdr='cd $(find ~/git/chef/cloud-roles ~/git/chef/site-cookbooks ~/git/chef/app-cookbooks ~/git/chef/dc-roles -type d -maxdepth 1 | selecta)' 22 - export HISTFILE="$HOME/.mksh-history" 23 27 export CHEFUSER="jolson" 24 28 export SSHUSER="jolson" 25 29 export SSHKEY="~/.ssh/id_rsa"
+1 -1
bin/short-pwd
··· 3 3 # /s/h/o/rtness 4 4 5 5 term=$(printf "$PWD" | sed -E 's|(\.?[^/])([^/]+)\/|\1/|g') 6 - printf "\033[38;5;162m$term\e[0m" 6 + printf "\033[38;5;162m$term\033[0m"