Advertisement
Guest User

Untitled

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