dotfiles

My personal home directory config files
git clone https://erai.gay/code/dotfiles/
Log | Files | Refs | LICENSE

bashrc (514B)


      1 #!/bin/bash
      2 
      3 set -o vi
      4 
      5 PS1='\033[0m; \u@\H:\w \D{%s} status $?\n\$ '
      6 
      7 export PATH="${HOME}/.bin:${PATH}"
      8 export EDITOR=vi
      9 export VISUAL=vi
     10 export LANG=en_US.UTF-8
     11 export TZ=America/New_York
     12 export LESSHISTFILE=-
     13 export PYTHONSTARTUP="${HOME}/.pythonrc"
     14 export HISTCONTROL=ignoreboth:erasedups
     15 
     16 unset HISTFILE
     17 
     18 alias ls='ls --color=auto'
     19 alias grep='grep --color=auto'
     20 
     21 if [ -z "${TMUX:-}" ]; then
     22 	history -s 'tmux a || tmux'
     23 fi
     24 
     25 if [ -z "${SSH_AUTH_SOCK}" ]; then
     26 	export SSH_AUTH_SOCK="${HOME}/.ssh/agent.S"
     27 fi