Advertisement
Guest User

zshrc

a guest
May 8th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. ZSH=$HOME/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. ZSH_THEME="lambda"
  7. # Optionally, if you set this to "random", it'll load a random theme each
  8. # time that oh-my-zsh is loaded.
  9. # Example aliases
  10. # alias zshconfig="mate ~/.zshrc"
  11. # alias ohmyzsh="mate ~/.oh-my-zsh"
  12. alias sysupgrade="sudo snp pacman -Syu"
  13. alias aurupgrade="snp yaourt -Syua"
  14. # Set to this to use case-sensitive completion
  15. # CASE_SENSITIVE="true"
  16. alias gvim='gvim -geometry 500x500'
  17. alias vimrc='gvim /home/chad/.vimrc'
  18. alias chkupd='checkupdates'
  19. # Uncomment this to disable bi-weekly auto-update checks
  20. # DISABLE_AUTO_UPDATE="true"
  21.  
  22. # Uncomment to change how often before auto-updates occur? (in days)
  23. # export UPDATE_ZSH_DAYS=13
  24.  
  25. # Uncomment following line if you want to disable colors in ls
  26. # DISABLE_LS_COLORS="true"
  27.  
  28. # Uncomment following line if you want to disable autosetting terminal title.
  29. # DISABLE_AUTO_TITLE="true"
  30.  
  31. # Uncomment following line if you want to disable command autocorrection
  32. # DISABLE_CORRECTION="true"
  33.  
  34. # Uncomment following line if you want red dots to be displayed while waiting for completion
  35. # COMPLETION_WAITING_DOTS="true"
  36.  
  37. # Uncomment following line if you want to disable marking untracked files under
  38. # VCS as dirty. This makes repository status check for large repositories much,
  39. # much faster.
  40. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  41.  
  42. # Uncomment following line if you want to shown in the command execution time stamp
  43. # in the history command output. The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|
  44. # yyyy-mm-dd
  45. # HIST_STAMPS="mm/dd/yyyy"
  46.  
  47. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  48. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  49. # Example format: plugins=(rails git textmate ruby lighthouse)
  50. plugins=(web-search systemd archlinux common-aliases extract catimg)
  51.  
  52. source $ZSH/oh-my-zsh.sh
  53.  
  54. # User configuration
  55.  
  56. export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/core_perl"
  57. # export MANPATH="/usr/local/man:$MANPATH"
  58.  
  59. # Preferred editor for local and remote sessions
  60. # if [[ -n $SSH_CONNECTION ]]; then
  61. # export EDITOR='vim'
  62. # else
  63. # export EDITOR='mvim'
  64. # fi
  65.  
  66. # Compilation flags
  67. # export ARCHFLAGS="-arch x86_64"
  68.  
  69. # ssh
  70. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  71.  
  72. source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  73. PATH="$(ruby -e 'puts Gem.user_dir')/bin:$PATH)"
  74. export PATH=$PATH:/opt/ruby-enterprise-1.8.7-2010.02/bin
  75. export EDITOR="vim"
  76. source /usr/share/doc/pkgfile/command-not-found.zsh
  77. alias wftop='sudo iftop -i wlp3s0'
  78. alias sl='/usr/bin/sl'
  79. export BROWSER=firefox
  80. alias startup='gnome-session-properties'
  81. alias tc1='truecrypt --fs-options=users,uid=$(id -u),gid=$(id -g),fmask=0113,dmask=0002 --mount /home/chad/Public/crypt.tc"" /home/chad/Public/crypt'
  82. alias utc='truecrypt -t -d'
  83. bindkey '^T' autosuggest-toggle
  84. [[ -z "$TMUX" ]] && exec tmux
  85. alias wspeed='speedometer -r wlp3s0 -t wlp3s0'
  86. PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/core_perl:/home/chad/Scripts"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement