# Path to your oh-my-zsh installation. # Set name of the theme to load. # Look in ~/.oh-my-zsh/themes/ # Optionally, if you set this to "random", it'll load a random theme each # time that oh-my-zsh is loaded. ##ZSH_THEME="kolo" ZSH_THEME="gianu" # Uncomment the following line to use case-sensitive completion. CASE_SENSITIVE="true" # Uncomment the following line to disable bi-weekly auto-update checks. # DISABLE_AUTO_UPDATE="true" # Uncomment the following line to change how often to auto-update (in days). # export UPDATE_ZSH_DAYS=13 # Uncomment the following line to disable colors in ls. # DISABLE_LS_COLORS="true" # Uncomment the following line to disable auto-setting terminal title. # DISABLE_AUTO_TITLE="true" # Uncomment the following line to disable command auto-correction. DISABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. # COMPLETION_WAITING_DOTS="true" # Uncomment the following line if you want to disable marking untracked files # under VCS as dirty. This makes repository status check for large repositories # much, much faster. # DISABLE_UNTRACKED_FILES_DIRTY="true" # Uncomment the following line if you want to change the command execution time # stamp shown in the history command output. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" # HIST_STAMPS="mm/dd/yyyy" # Would you like to use another custom folder than $ZSH/custom? ZSH_CUSTOM=$HOME/.zsh/custom # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) plugins=(wd fossil) ZSH=~/.oh-my-zsh source $ZSH/oh-my-zsh.sh export LANG=en_US.UTF-8 export MANPATH="/usr/local/man:$MANPATH" # Enable direnv (https://github.com/direnv/direnv/) DIRENV=`whereis -b direnv | awk {'print $2'}` if [ -x $DIRENV ]; then eval "$(direnv hook zsh)" fi # PATH setup export PATH="$HOME/bin:$HOME/.cargo/bin:/snap/bin:/usr/local/go/bin/:$PATH" if [ -f /usr/local/go/bin/go ]; then #export GOROOT=/usr/local/go/ #export GOPATH=$HOME/Code/go export PATH="$PATH:$GOROOT/bin:$(go env GOPATH)/bin" fi # Rust if [ -f $HOME/.cargo/env ]; then source $HOME/.cargo/env fi # maybe this stuff should go in .profile. Emacs seems to read from that if [ -x $HOME/.cargo/bin/rustup ]; then export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" fi # Preferred editor for local and remote sessions # if [[ -n $SSH_CONNECTION ]]; then #export EDITOR='emacs' # else # export EDITOR='mvim' # fi #export EDITOR='/Applications/Emacs\ 25.app/Contents/MacOS/bin/emacsclient' export _TERM_EMACS='emacsclient -nw -a "emacs -nw"' export EDITOR=$_TERM_EMACS # Aliases #alias fixfileperm='find /music -type f -exec chmod 0644 {} \;' #alias cleanremotebranches='git branch --merged | grep -v "\*" | xargs -n 1 git branch -d; git branch -r --merged master | grep -iv "master" | sed "s/origin\///" | xargs -n 1 git push --delete origin' alias ducks='du -cks * |sort -rn |head -11' #alias dc='docker-compose' alias define='sdcv' alias emacs=$_TERM_EMACS #alias cleanstale="git clean -fd -e'!__pycache__' -e'!*.py[cod]'" #alias dry-cleanstale="git clean -fdn -e'!__pycache__' -e'!*.py[cod]'" # Python if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then source /usr/local/bin/virtualenvwrapper.sh elif [ -f /usr/share/virtualenvwrapper/virtualenvwrapper_lazy.sh ]; then source /usr/share/virtualenvwrapper/virtualenvwrapper_lazy.sh fi # Enable firefox touchscreen scrolling export MOZ_USE_XINPUT2=1 # GPG ssh key export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" export GPG_TTY=$(tty) #export COMPOSE_HTTP_TIMEOUT=600 #export DOCKER_CLIENT_TIMEOUT=120 show_virtual_env() { if [ -n "$VIRTUAL_ENV" ]; then echo "($(basename $VIRTUAL_ENV)) " fi } PROMPT='$(show_virtual_env)[%{$fg_bold[white]%}%n%{$reset_color%}@%{$fg_bold[red]%}%m%{$reset_color%} %{$fg[cyan]%}%1~%{$reset_color%}]%# ' LS_COLORS='rs=0:di=38;5;32:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'; [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh dg() { // credit: doug tolton dg_res=$(ls -1p \ | gawk -v target=$1 '$0 ~ target') dg_res_count=$(echo $dg_res \ | gawk 'length($0) > 0' \ | wc -l) if [[ "$dg_res_count" -eq 1 ]] then cd $(echo $dg_res) elif [[ "$dg_res_count" -eq 0 ]]; then echo "NO MATCHES" else echo $dg_res echo "MATCHES: "$dg_res_count fi }