Advertisement
Guest User

Untitled

a guest
May 25th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=/home/eugene/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. # Optionally, if you set this to "random", it'll load a random theme each
  7. # time that oh-my-zsh is loaded.
  8. ZSH_THEME="gnzh"
  9. #ZSH_THEME="robbyrussell"
  10.  
  11. # Uncomment the following line to use case-sensitive completion.
  12. # CASE_SENSITIVE="true"
  13.  
  14. # Uncomment the following line to use hyphen-insensitive completion. Case
  15. # sensitive completion must be off. _ and - will be interchangeable.
  16. # HYPHEN_INSENSITIVE="true"
  17.  
  18. # Uncomment the following line to disable bi-weekly auto-update checks.
  19. # DISABLE_AUTO_UPDATE="true"
  20.  
  21. # Uncomment the following line to change how often to auto-update (in days).
  22. # export UPDATE_ZSH_DAYS=13
  23.  
  24. # Uncomment the following line to disable colors in ls.
  25. # DISABLE_LS_COLORS="true"
  26.  
  27. # Uncomment the following line to disable auto-setting terminal title.
  28. # DISABLE_AUTO_TITLE="true"
  29.  
  30. # Uncomment the following line to enable command auto-correction.
  31. # ENABLE_CORRECTION="true"
  32.  
  33. # Uncomment the following line to display red dots whilst waiting for completion.
  34. # COMPLETION_WAITING_DOTS="true"
  35.  
  36. # Uncomment the following line if you want to disable marking untracked files
  37. # under VCS as dirty. This makes repository status check for large repositories
  38. # much, much faster.
  39. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  40.  
  41. # Uncomment the following line if you want to change the command execution time
  42. # stamp shown in the history command output.
  43. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  44. # HIST_STAMPS="mm/dd/yyyy"
  45.  
  46. # Would you like to use another custom folder than $ZSH/custom?
  47. # ZSH_CUSTOM=/path/to/new-custom-folder
  48.  
  49. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  50. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  51. # Example format: plugins=(rails git textmate ruby lighthouse)
  52. # Add wisely, as too many plugins slow down shell startup.
  53. plugins=(git zsh-completions pip mvn)
  54.  
  55. # User configuration
  56.  
  57. export PATH="/home/eugene/anaconda/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/postgresql/9.3/bin:/home/eugene/university/scripts"
  58. # export MANPATH="/usr/local/man:$MANPATH"
  59.  
  60. source $ZSH/oh-my-zsh.sh
  61.  
  62. # You may need to manually set your language environment
  63. # export LANG=en_US.UTF-8
  64.  
  65. # Preferred editor for local and remote sessions
  66. # if [[ -n $SSH_CONNECTION ]]; then
  67. # export EDITOR='vim'
  68. # else
  69. # export EDITOR='mvim'
  70. # fi
  71.  
  72. # Compilation flags
  73. # export ARCHFLAGS="-arch x86_64"
  74.  
  75. # ssh
  76. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  77.  
  78. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  79. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  80. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  81. # For a full list of active aliases, run `alias`.
  82. #
  83. # Example aliases
  84. # alias zshconfig="mate ~/.zshrc"
  85. # alias ohmyzsh="mate ~/.oh-my-zsh"
  86.  
  87. export JAVA_HOME=/usr/lib/jvm/java-8-oracle
  88.  
  89. # set terminal like vim
  90. set -o vi
  91.  
  92. alias open='xdg-open'
  93. ulimit -c unlimited
  94.  
  95. # User configuration
  96.  
  97. #fpath=(~/.zsh/completion $fpath)
  98. #alias twitch=open_twitch_stream
  99.  
  100. ccat() {
  101. source-highlight --out-format=esc -o STDOUT -i "$@"
  102. }
  103.  
  104. cless() {
  105. ccat "$@" | less
  106. }
  107.  
  108. export VISUAL="vim"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement