mirror of
https://github.com/roles-ansible/ansible_role_dotfiles.git
synced 2024-08-16 16:09:49 +02:00
24 lines
785 B
Bash
24 lines
785 B
Bash
# .bashrc
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bash.bashrc ]; then
|
|
. /etc/bash.bashrc
|
|
fi
|
|
|
|
# User specific environment
|
|
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
|
export PATH
|
|
|
|
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
|
# export SYSTEMD_PAGER=
|
|
|
|
PS1='$(if [[ $(id -u) -ne 0 ]];then echo "\[\033[01;33m\]"; else echo "\[\033[01;31m\]"; fi) $(if [[ $? == 0 ]]; then printf "\xE2\x9D\xA4"; fi) \[\033[01;32m\]\u\[\033[01;36m\]@\[\033[01;32m\]\H\[\033[01;34m\] <\A> \[\033[01;35m\] \j \[\033[01;36m\] \w \[\033[01;33m\]\n\[\033[01;33m\] $(git branch 2>/dev/null | sed -n "s/* \(.*\)/\1 /p")$\[\033[01;00m\] '
|
|
|
|
{{ bash['bashrc'] }}
|
|
{% if install_keychain %}
|
|
{{ bash['keychain'] }}
|
|
{% endif %}
|
|
|
|
# User specific aliases and functions
|
|
alias ll="ls -all"
|
|
|