Advertisement
Guest User

.zshrc

a guest
May 13th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 3.53 KB | None | 0 0
  1.  
  2. # If you come from bash you might have to change your $PATH.
  3. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  4.  
  5. # Path to your oh-my-zsh installation.
  6.   export ZSH=/home/david/.oh-my-zsh
  7.  
  8. # Set name of the theme to load. Optionally, if you set this to "random"
  9. # it'll load a random theme each time that oh-my-zsh is loaded.
  10. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  11.   ZSH_THEME="oxide"
  12. #  POWERLEVEL9K_PROMPT_ON_NEWLINE=true
  13. #  POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir virtualenv vcs)
  14.  
  15. # Set list of themes to load
  16. # Setting this variable when ZSH_THEME=random
  17. # cause zsh load theme from this variable instead of
  18. # looking in ~/.oh-my-zsh/themes/
  19. # An empty array have no effect
  20. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  21.  
  22. # Uncomment the following line to use case-sensitive completion.
  23. # CASE_SENSITIVE="true"
  24.  
  25. # Uncomment the following line to use hyphen-insensitive completion. Case
  26. # sensitive completion must be off. _ and - will be interchangeable.
  27. # HYPHEN_INSENSITIVE="true"
  28.  
  29. # Uncomment the following line to disable bi-weekly auto-update checks.
  30.  DISABLE_AUTO_UPDATE="true"
  31.  
  32. # Uncomment the following line to change how often to auto-update (in days).
  33. # export UPDATE_ZSH_DAYS=13
  34.  
  35. # Uncomment the following line to disable colors in ls.
  36. # DISABLE_LS_COLORS="true"
  37.  
  38. # Uncomment the following line to disable auto-setting terminal title.
  39. # DISABLE_AUTO_TITLE="true"
  40.  
  41. # Uncomment the following line to enable command auto-correction.
  42. # ENABLE_CORRECTION="true"
  43.  
  44. # Uncomment the following line to display red dots whilst waiting for completion.
  45. # COMPLETION_WAITING_DOTS="true"
  46.  
  47. # Uncomment the following line if you want to disable marking untracked files
  48. # under VCS as dirty. This makes repository status check for large repositories
  49. # much, much faster.
  50. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  51.  
  52. # Uncomment the following line if you want to change the command execution time
  53. # stamp shown in the history command output.
  54. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  55. # HIST_STAMPS="mm/dd/yyyy"
  56.  
  57. # Would you like to use another custom folder than $ZSH/custom?
  58. # ZSH_CUSTOM=/path/to/new-custom-folder
  59.  
  60. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  61. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  62. # Example format: plugins=(rails git textmate ruby lighthouse)
  63. # Add wisely, as too many plugins slow down shell startup.
  64. plugins=(
  65.   git
  66.   zsh-autosuggestions
  67.   zsh-syntax-highlighting
  68.   docker
  69.   docker-compose
  70.   pip
  71.   virtualenv  
  72.   ubuntu
  73.   virtualenvwrapper
  74. )
  75.  
  76. source $ZSH/oh-my-zsh.sh
  77.  
  78.  
  79. # User configuration
  80.  
  81. # export MANPATH="/usr/local/man:$MANPATH"
  82.  
  83. # You may need to manually set your language environment
  84. # export LANG=en_US.UTF-8
  85.  
  86. # Preferred editor for local and remote sessions
  87. # if [[ -n $SSH_CONNECTION ]]; then
  88. #   export EDITOR='vim'
  89. # else
  90. #   export EDITOR='mvim'
  91. # fi
  92.  
  93. # Compilation flags
  94. # export ARCHFLAGS="-arch x86_64"
  95.  
  96. # ssh
  97. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  98.  
  99. # Example aliases
  100. # alias zshconfig="mate ~/.zshrc"
  101. # alias ohmyzsh="mate ~/.oh-my-zsh"
  102. alias code='vscodium'
  103.  
  104. export WORKON_HOME=$HOME/.virtualenvs
  105. source /usr/local/bin/virtualenvwrapper.sh
  106.  
  107. export PATH="/home/david/.pyenv/bin:$PATH"
  108. eval "$(pyenv init -)"
  109. eval "$(pyenv virtualenv-init -)"
  110. export PYENV_VIRTUALENVWRAPPER_PREFER_PYVENV="true"
  111.  
  112. # dircolors.
  113. if [ -x "$(command -v dircolors)" ]; then
  114.     eval "$(dircolors -b ~/.dircolors)"
  115. fi
  116.  
  117. [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement