fix stdout descriptor

whole-command-tab-completion
bretello 2020-02-14 16:37:48 +01:00
parent 4d78664769
commit e9da760def
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,7 @@ function brethil_dotfiles_setup {
$install_command $PACKAGES
# prepare .zshrc
exec 1>&3 # save stdout
exec 3>&1 # save stdout
exec 1>$HOME/.zshrc
echo "source $antigen_path"
echo -e "\n\n# brethil's dotfiles:"
@ -197,6 +197,7 @@ function brethil_dotfiles_setup {
echo "DOTFILES=$DOTFILES"
echo "source \$DOTFILES/brethil_dotfile.sh"
echo -e "# End of brethil's dotfiles\n\n"
exec 1>&3 # restore stdout
fix_annoyances
# Install vim awesomerc (git amix/vimrc)