Advertisement
jv2112

zshrc-Config

Apr 17th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.35 KB | None | 0 0
  1. # Lines configured by zsh-newuser-install
  2. HISTFILE=~/.Command_and_Control
  3. HISTSIZE=2000
  4. SAVEHIST=3000
  5.  
  6.  
  7. EDITOR=vim; export $EDITOR
  8.  
  9. setopt appendhistory autocd extendedglob nomatch notify
  10. bindkey -e
  11. # End of lines configured by zsh-newuser-install
  12. # The following lines were added by compinstall
  13. zstyle :compinstall filename '/home/joe/.zshrc'
  14.  
  15. autoload -Uz compinit
  16. compinit
  17. # End of lines added by compinstall
  18. alsi
  19. ps -u
  20.  
  21. export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/joe/bin/
  22.  
  23.  
  24. CDPATH=.:~:/media/Bit-Bucket
  25.  
  26. # Functions ---
  27.  
  28. Envy-Tux ()
  29.     {
  30.     clear
  31.     figlet Envy-Tux
  32.     ssh -X joe@10.0.0.249
  33.     }
  34.  
  35. Tux-Box ()
  36.     {
  37.     clear
  38.     figlet Tux-Box
  39.     ssh -X joe@10.0.0.250
  40.     }
  41.  
  42. up ()
  43.     {
  44.     sudo yaourt -Syy
  45.     sudo yaourt -Syu
  46.     sudo pacman -Syc
  47.     sudo pacman -R $(sudo pacman -Qtdq)
  48. }
  49.  
  50.  
  51. # Options
  52.  
  53.  
  54. setopt extendedglob # ERE
  55. setopt correctall
  56. setopt sharehistory
  57. setopt extendedhistory
  58. setopt hist_ignore_all_dups
  59.  
  60.  
  61. # Joe Mods -- Bashrc import
  62.  
  63. alias ls='ls --color=auto'
  64. alias grep='grep --color=auto'
  65. alias fgrep='fgrep --color=auto'
  66. alias egrep='egrep --color=auto'
  67. alias vi="vim"
  68. alias pacman="sudo pacman"
  69. alias tunes="ncmpcpp"
  70. alias youtube-dl="youtube-dl -ci -o '%(title)s-%(upload_date)s-%(ext)s'"
  71. alias df='df -hTl -x tmpfs -x devtmpfs --total'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement