1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export LANGUAGE=en_US.UTF-8
- export LANG=en_US.UTF-8
- export LC_ALL=en_US.UTF-8
- export XDG_CONFIG_HOME="$HOME/.config"
- export XDG_CACHE_HOME="$HOME/.cache"
- export XDG_DATA_HOME="$HOME/.local/share"
- export BROWSER="firefox"
- [ -z "$PS1" ] && return
- shopt -s autocd cdspell dirspell globstar
- shopt -s histappend
- HISTCONTROL=ignoredups:ignorespace
- HISTSIZE=10000
- HISTFILESIZE=20000
- HISTTIMEFORMAT='%F %T%z '
- shopt -s checkwinsize
- [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
- if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
- fi
- case "$TERM" in
- *color*) color_prompt=yes;;
- rxvt-unicode) color_prompt=yes;;
- esac
- test -r "$HOME/srv/art/motd/$(hostname -s)_motd" \
- && test "$color_prompt" = "yes" \
- && cat "$HOME/srv/art/motd/$(hostname -s)_motd"
- for file in ~/.{bash_prompt,exports,aliases,functions}; do
- [ -r "$file" ] && . "$file"
- done
- unset file
- BASE16_SHELL=$HOME/.config/base16-shell/
- [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
- [ -f ~/.fzf.bash ] && source ~/.fzf.bash
|