Added fasd for quick filesystem navigation

This commit is contained in:
yan
2012-03-18 21:15:37 -07:00
committed by Yan Pritzker
parent a64405f6db
commit 9d700e3df0
4 changed files with 613 additions and 6 deletions

View File

@@ -117,3 +117,11 @@ alias sgi='sudo gem install --no-ri --no-rdoc'
# to find the note called 'todo'
alias todo='open nvalt://find/todo'
# fasd - https://github.com/clvv/fasd
# jump to recently used items
alias a='fasd -a' # any
alias s='fasd -s' # show / search / select
alias d='fasd -d' # directory
alias f='fasd -f' # file
alias z='fasd_cd -d' # cd, same functionality as j in autojump
alias v='f -e vim' # quick opening files with vim

View File

@@ -60,3 +60,7 @@ export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;33;246m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\E[0m' # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
# Initialize fasd (https://github.com/clvv/fasd)
eval "$(fasd --init posix-alias zsh-hook)"