diff --git a/bash/.bash_profile b/bash/.bash_profile index 7fd6523..b68f9ea 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -17,7 +17,7 @@ shopt -s histappend shopt -s cdspell # solarized directory color listings -eval `dircolors $HOME/.dir_colors` +# eval `dircolors $HOME/.dir_colors` # tmuxifier -eval "$(starship init bash)" +# eval "$(starship init bash)" diff --git a/bash/.bashrc b/bash/.bashrc index 43969ea..478aed5 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -44,8 +44,7 @@ fi # work around for fzf set -o vi -[ -f ~/.fzf.bash ] && source ~/.fzf.bash - +eval "$(fzf --bash)" # tmuxifier eval "$(tmuxifier init -)" diff --git a/shellenv/.functions b/shellenv/.functions index 5ef65fa..07aeeec 100644 --- a/shellenv/.functions +++ b/shellenv/.functions @@ -14,3 +14,7 @@ pdfmerge() { gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTTINGS=/prepress\ -sOutputFile=$@ ; } + +apdoc () { + ansible-doc $1 | grep EXAMPLES -A 100 | less +}