This commit is contained in:
Austen Adler 2015-03-02 07:41:44 -05:00
parent 3a30c5e694
commit 66d635ce90
2 changed files with 4 additions and 2 deletions

View File

@ -138,7 +138,7 @@ export FZF_COMPLETION_OPTS='--no-mouse -m -1 -x'
function ctar(){
DST=$1
shift
tar -cf - $@|pv -s $(($(echo $(du -sb $@|awk '{print $1}'|tr '\n' '+')0)))|gzip>$DST
tar -cf - $@|pv -cN tar -s $(echo $(du -sb $@|awk '{print $1}'|tr '\n' '+')0|bc)|pv -cN gzip|gzip>$DST
}
function pcat(){
pygmentize -f terminal "$1" | less -R

View File

@ -327,9 +327,11 @@ Plug 'mhinz/vim-signify'
Plug 'jamessan/vim-gnupg'
"GPG support | https://github.com/jamessan/vim-gnupg
Plug 'stonewareslord/zeavim.vim'
"Zeal support |
"Zeal support | https://github.com/stonewareslord/zeavim.vim
Plug 'vim-scripts/DirDiff.vim'
"Directory diff | https://github.com/vim-scripts/DirDiff.vim
Plug 'vim-scripts/DoxygenToolkit.vim'
"Doxygen | https://github.com/vim-scripts/DoxygenToolkit.vim
"DO NOT DELETE LINE ABOVE OR \bun WILL BREAK
call plug#end()
filetype plugin indent on