Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. # If you come from bash you might have to change your $PATH.
  2. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  3.  
  4. # Path to your oh-my-zsh installation.
  5. export ZSH="/home/hcnt/.oh-my-zsh"
  6.  
  7. # Set name of the theme to load --- if set to "random", it will
  8. # load a random theme each time oh-my-zsh is loaded, in which case,
  9. # to know which specific one was loaded, run: echo $RANDOM_THEME
  10. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  11.  
  12. # Set list of themes to pick from when loading at random
  13. # Setting this variable when ZSH_THEME=random will cause zsh to load
  14. # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
  15. # If set to an empty array, this variable will have no effect.
  16. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  17.  
  18. # Uncomment the following line to use case-sensitive completion.
  19. # CASE_SENSITIVE="true"
  20.  
  21. # Uncomment the following line to use hyphen-insensitive completion.
  22. # Case-sensitive completion must be off. _ and - will be interchangeable.
  23. # HYPHEN_INSENSITIVE="true"
  24.  
  25. # Uncomment the following line to disable bi-weekly auto-update checks.
  26. # DISABLE_AUTO_UPDATE="true"
  27.  
  28. # Uncomment the following line to change how often to auto-update (in days).
  29. # export UPDATE_ZSH_DAYS=13
  30.  
  31. # Uncomment the following line to disable colors in ls.
  32. # DISABLE_LS_COLORS="true"
  33.  
  34. # Uncomment the following line to disable auto-setting terminal title.
  35. # DISABLE_AUTO_TITLE="true"
  36.  
  37. # Uncomment the following line to enable command auto-correction.
  38. # ENABLE_CORRECTION="true"
  39.  
  40. # Uncomment the following line to display red dots whilst waiting for completion.
  41. # COMPLETION_WAITING_DOTS="true"
  42.  
  43. # Uncomment the following line if you want to disable marking untracked files
  44. # under VCS as dirty. This makes repository status check for large repositories
  45. # much, much faster.
  46. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  47.  
  48. # Uncomment the following line if you want to change the command execution time
  49. # stamp shown in the history command output.
  50. # You can set one of the optional three formats:
  51. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  52. # or set a custom format using the strftime function format specifications,
  53. # see 'man strftime' for details.
  54. # HIST_STAMPS="mm/dd/yyyy"
  55.  
  56. # Would you like to use another custom folder than $ZSH/custom?
  57. # ZSH_CUSTOM=/path/to/new-custom-folder
  58.  
  59. # Which plugins would you like to load?
  60. # Standard 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-syntax-highlighting
  67. zsh-autosuggestions
  68. virtualenv
  69. vi-mode
  70. )
  71.  
  72. source $ZSH/oh-my-zsh.sh
  73.  
  74. # User configuration
  75.  
  76. # export MANPATH="/usr/local/man:$MANPATH"
  77.  
  78. # You may need to manually set your language environment
  79. # export LANG=en_US.UTF-8
  80.  
  81. # Preferred editor for local and remote sessions
  82. # if [[ -n $SSH_CONNECTION ]]; then
  83. # export EDITOR='vim'
  84. # else
  85. # export EDITOR='mvim'
  86. # fi
  87.  
  88. # Compilation flags
  89. # export ARCHFLAGS="-arch x86_64"
  90.  
  91. # ssh
  92. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  93.  
  94. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  95. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  96. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  97. # For a full list of active aliases, run `alias`.
  98. #
  99. # Example aliases
  100. # alias zshconfig="mate ~/.zshrc"
  101. # alias ohmyzsh="mate ~/.oh-my-zsh"
  102.  
  103. POWERLEVEL9K_SHORTEN_DIR_LENGTH=2
  104. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs)
  105. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(vi_mode virtualenv time)
  106. POWERLEVEL9K_VIRTUALENV_BACKGROUND='magenta'
  107. POWERLEVEL9K_VIRTUALENV_FOREGROUND='black'
  108. POWERLEVEL9K_VI_MODE_INSERT_FOREGROUND='black'
  109. POWERLEVEL9K_VI_MODE_INSERT_BACKGROUND='cyan'
  110. POWERLEVEL9K_VI_MODE_NORMAL_FOREGROUND='black'
  111. POWERLEVEL9K_VI_MODE_NORMAL_BACKGROUND='green'
  112.  
  113.  
  114. source /usr/share/zsh-theme-powerlevel9k/powerlevel9k.zsh-theme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement