Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 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=/Users/Carlos/.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="robbyrussell"
  11. export EDITOR=vim
  12. # Uncomment the following line to use case-sensitive completion.
  13. # CASE_SENSITIVE="true"
  14.  
  15. # Uncomment the following line to use hyphen-insensitive completion. Case
  16. # sensitive completion must be off. _ and - will be interchangeable.
  17. # HYPHEN_INSENSITIVE="true"
  18.  
  19. # Uncomment the following line to disable bi-weekly auto-update checks.
  20. # DISABLE_AUTO_UPDATE="true"
  21.  
  22. # Uncomment the following line to change how often to auto-update (in days).
  23. # export UPDATE_ZSH_DAYS=13
  24.  
  25. # Uncomment the following line to disable colors in ls.
  26. # DISABLE_LS_COLORS="true"
  27.  
  28. # Uncomment the following line to disable auto-setting terminal title.
  29. # DISABLE_AUTO_TITLE="true"
  30.  
  31. # Uncomment the following line to enable command auto-correction.
  32. # ENABLE_CORRECTION="true"
  33.  
  34. # Uncomment the following line to display red dots whilst waiting for completion.
  35. # COMPLETION_WAITING_DOTS="true"
  36.  
  37. # Uncomment the following line if you want to disable marking untracked files
  38. # under VCS as dirty. This makes repository status check for large repositories
  39. # much, much faster.
  40. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  41.  
  42. # Uncomment the following line if you want to change the command execution time
  43. # stamp shown in the history command output.
  44. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  45. # HIST_STAMPS="mm/dd/yyyy"
  46.  
  47. # Would you like to use another custom folder than $ZSH/custom?
  48. # ZSH_CUSTOM=/path/to/new-custom-folder
  49.  
  50. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  51. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  52. # Example format: plugins=(rails git textmate ruby lighthouse)
  53. # Add wisely, as too many plugins slow down shell startup.
  54. plugins=(git)
  55.  
  56. source $ZSH/oh-my-zsh.sh
  57.  
  58. # User configuration
  59.  
  60. # export MANPATH="/usr/local/man:$MANPATH"
  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. alias mux=tmuxinator
  87.  
  88. export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement