Skip to content

Instantly share code, notes, and snippets.

@dovry
dovry / bashrc
Last active October 13, 2021 12:42
General bashrc config I use to make life a little easier
alias bconf='vim $HOME/.bashrc && printf "\nReloading bashrc\n" && source $HOME/.bashrc'
export PATH="$PATH:$HOME/.local/bin/"
if shopt -q login_shell; then
printf "\nssh to these servers!\n\n" && grep -e "Host" /home/$(whoami)/.ssh/config | grep -v "Hostname" | grep -v "\*"
fi
eval `ssh-agent` > /dev/null 2>&1
@dovry
dovry / ansible.cfg
Last active March 25, 2022 10:36
ansible.cfg
# config file for ansible -- https://ansible.com/
# ================================================
[defaults]
vault_password_file = ~/.config/.ansi-vault
gathering = smart
fact_path = ~/.ansible/facts
roles_path = ~/.ansible/roles/:/etc/ansible/roles
display_skipped_hosts = False
#enable_task_debugger = True