Advertisement
Algabe

zshrc

Jan 17th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. ##############################################################
  2. # _ _ ____ _ _ _____ _ _ #
  3. # ___ ___| |__ ___ | |/ ___|| | | | ____| | | | #
  4. # / _ \/ __| '_ \ / _ \ / __)___ \| |_| | _| | | | | #
  5. #| __/ (__| | | | (_) | \__ \___) | _ | |___| |___| |___ #
  6. # \___|\___|_| |_|\___/ ( /____/|_| |_|_____|_____|_____| #
  7. # |_| #
  8. ##############################################################
  9.  
  10. # Path to your oh-my-zsh configuration.
  11. ZSH=$HOME/.oh-my-zsh
  12.  
  13. # If not running interactively, don't do anything
  14. [[ $- != *i* ]] && return
  15. export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
  16. export TERM=rxvt
  17. export GEM_HOME=~/.gem/ruby/2.0.0
  18.  
  19. # Set name of the theme to load.
  20. # Look in ~/.oh-my-zsh/themes/
  21. # Optionally, if you set this to "random", it'll load a random theme each
  22. # time that oh-my-zsh is loaded.
  23. ZSH_THEME="robbyrussell"
  24.  
  25. # Example aliases
  26. alias macc='sudo ifconfig wlan0 down && sudo macchanger -a wlan0 && sudo ifconfig wlan0 up'
  27. alias fing='sudo fing'
  28. alias zshconfig='nano ~/.zshrc'
  29. alias ohmyzsh='subl ~/.oh-my-zsh'
  30. alias tmp='sudo mount -o remount,size=8G /tmp'
  31. alias geoip="python2 /usr/bin/geoip.py"
  32.  
  33. # Set to this to use case-sensitive completion
  34. # CASE_SENSITIVE="true"
  35.  
  36. # Uncomment this to disable bi-weekly auto-update checks
  37. # DISABLE_AUTO_UPDATE="true"
  38.  
  39. # Uncomment to change how often before auto-updates occur? (in days)
  40. export UPDATE_ZSH_DAYS=13
  41.  
  42. # Uncomment following line if you want to disable colors in ls
  43. # DISABLE_LS_COLORS="true"
  44.  
  45. # Uncomment following line if you want to disable autosetting terminal title.
  46. # DISABLE_AUTO_TITLE="true"
  47.  
  48. # Uncomment following line if you want to disable command autocorrection
  49. # DISABLE_CORRECTION="true"
  50.  
  51. # Uncomment following line if you want red dots to be displayed while waiting for completion
  52. # COMPLETION_WAITING_DOTS="true"
  53.  
  54. # Uncomment following line if you want to disable marking untracked files under
  55. # VCS as dirty. This makes repository status check for large repositories much,
  56. # much faster.
  57. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  58.  
  59. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  60. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  61. # Example format: plugins=(rails git textmate ruby lighthouse)
  62. plugins=(git screen)
  63.  
  64. source $ZSH/oh-my-zsh.sh
  65.  
  66. # Customize to your needs...
  67.  
  68. export LANG=en_US.UTF-8
  69. export EDITOR="nano"
  70. export PATH=$PATH:/home/algabe/.gem/ruby/2.0.0/bin/
  71. #alsi -a -u
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement