diff --git a/shells/zshrc b/shells/zshrc index bf74ac4..5a271f8 100644 --- a/shells/zshrc +++ b/shells/zshrc @@ -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 diff --git a/vim/vimrc b/vim/vimrc index 78f1fe1..71a2097 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -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