Advertisement
P22DX

bash.bash

Apr 25th, 2020
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. [ -f ~/.fzf.bash ] && source ~/.fzf.bash
  2. PS1="\[\033[0;32m\]\u@\h\[\033[0;34m\]:\w\[\033[00m\]\$ "
  3.  
  4. eval "`dircolors`"
  5. alias ls='ls --color=auto'
  6. alias ll='ls --color=auto -lshaF'
  7. alias l='ls --color=auto'
  8. alias la='ls --color=auto -a'
  9. alias grep='grep --color=auto'
  10. alias cls='clear'
  11. export HISTCONTROL=ignoredups:erasedups
  12. export HISTSIZE=100000
  13. export HISTFILESIZE=100000
  14. export PATH=/data/data/com.termux/files/home/.local/bin:/data/data/com.termux/files/usr/local/bin:$PATH
  15. export LD_LIBRARY_PATH=/data/data/com.termux/files/usr/local/lib:/data/data/com.termux/files/home/.local/lib:$LD_LIBRARY_PATH
  16. shopt -s histappend
  17. shopt -s checkwinsize
  18. if [ -f ~/.git-completion.bash ]; then
  19.     . ~/.git-completion.bash
  20. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement