Advertisement
Guest User

Untitled

a guest
May 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 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/angelo/.oh-my-zsh
  6.  
  7. # Set name of the theme to load. Optionally, if you set this to "random"
  8. # it'll load a random theme each time that oh-my-zsh is loaded.
  9. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  10. ZSH_THEME="powerlevel9k/powerlevel9k"
  11. POWERLEVEL9K_MODE='awesome-fontconfig'
  12. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(time dir vcs)
  13. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()
  14.  
  15. # Set li=st 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. )
  67.  
  68. source $ZSH/oh-my-zsh.sh
  69.  
  70. # User configuration
  71.  
  72. # export MANPATH="/usr/local/man:$MANPATH"
  73.  
  74. # You may need to manually set your language environment
  75. # export LANG=en_US.UTF-8
  76.  
  77. # Preferred editor for local and remote sessions
  78. # if [[ -n $SSH_CONNECTION ]]; then
  79. # export EDITOR='vim'
  80. # else
  81. # export EDITOR='mvim'
  82. # fi
  83.  
  84. # Compilation flags
  85. # export ARCHFLAGS="-arch x86_64"
  86.  
  87. # ssh
  88. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  89.  
  90. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  91. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  92. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  93. # For a full list of active aliases, run `alias`.
  94. #
  95. # Example aliases
  96. # alias zshconfig="mate ~/.zshrc"
  97. # alias ohmyzsh="mate ~/.oh-my-zsh"
  98. alias phpunit="./vendor/bin/phpunit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement