Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. xport ZSH=/home/$USER/.oh-my-zsh
  2.  
  3. ZSH_THEME="agnoster"
  4.  
  5. plugins=(git sudo)
  6.  
  7. source $ZSH/oh-my-zsh.sh
  8.  
  9. DEFAULT_USER=$USER
  10. HISTCONTROL=ignoreboth
  11. HISTSIZE=1000
  12. HISTFILESIZE=2000
  13. HISTFILE=~/.history
  14. SAVEHIST=5000
  15. export HISTFILE SAVEHIST HISTFILESIZE HISTCONTROL HISTSIZE
  16.  
  17. #alias
  18. alias ls='ls --color=auto'
  19. alias dir='dir --color=auto'
  20. alias vdir='vdir --color=auto'
  21. alias grep='grep --color=auto'
  22. alias fgrep='fgrep --color=auto'
  23. alias egrep='egrep --color=auto'
  24.  
  25. alias ll='ls -l'
  26. alias lla='ls -lArth'
  27. alias la='ls -la'
  28. alias rm='rm --preserve-root'
  29. alias tarbz2='tar cvjf'
  30. alias untarbz2='tar xvjf'
  31. alias targz='tar czvf'
  32. alias untargz='tar xzvf'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement