You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.2 KiB

7 years ago
6 years ago
7 years ago
6 years ago
7 years ago
6 years ago
7 years ago
7 years ago
6 years ago
6 years ago
  1. # If you come from bash you might have to change your $PATH.
  2. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  3. # Path to your oh-my-zsh installation.
  4. export ZSH=/home/joshfabean/.oh-my-zsh
  5. # Set name of the theme to load. Optionally, if you set this to "random"
  6. # it'll load a random theme each time that oh-my-zsh is loaded.
  7. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  8. ZSH_THEME="robbyrussell"
  9. # Uncomment the following line to use case-sensitive completion.
  10. # CASE_SENSITIVE="true"
  11. # Uncomment the following line to use hyphen-insensitive completion. Case
  12. # sensitive completion must be off. _ and - will be interchangeable.
  13. # HYPHEN_INSENSITIVE="true"
  14. # Uncomment the following line to disable bi-weekly auto-update checks.
  15. # DISABLE_AUTO_UPDATE="true"
  16. # Uncomment the following line to change how often to auto-update (in days).
  17. # export UPDATE_ZSH_DAYS=13
  18. # Uncomment the following line to disable colors in ls.
  19. # DISABLE_LS_COLORS="true"
  20. # Uncomment the following line to disable auto-setting terminal title.
  21. # DISABLE_AUTO_TITLE="true"
  22. # Uncomment the following line to enable command auto-correction.
  23. # ENABLE_CORRECTION="true"
  24. # Uncomment the following line to display red dots whilst waiting for completion.
  25. # COMPLETION_WAITING_DOTS="true"
  26. # Uncomment the following line if you want to disable marking untracked files
  27. # under VCS as dirty. This makes repository status check for large repositories
  28. # much, much faster.
  29. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  30. # Uncomment the following line if you want to change the command execution time
  31. # stamp shown in the history command output.
  32. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  33. # HIST_STAMPS="mm/dd/yyyy"
  34. # Would you like to use another custom folder than $ZSH/custom?
  35. # ZSH_CUSTOM=/path/to/new-custom-folder
  36. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  37. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  38. # Example format: plugins=(rails git textmate ruby lighthouse)
  39. # Add wisely, as too many plugins slow down shell startup.
  40. plugins=(git)
  41. source $ZSH/oh-my-zsh.sh
  42. source ~/.profile
  43. # User configuration
  44. # export MANPATH="/usr/local/man:$MANPATH"
  45. # You may need to manually set your language environment
  46. # export LANG=en_US.UTF-8
  47. # Preferred editor for local and remote sessions
  48. # if [[ -n $SSH_CONNECTION ]]; then
  49. # export EDITOR='vim'
  50. # else
  51. # export EDITOR='mvim'
  52. # fi
  53. # Compilation flags
  54. # export ARCHFLAGS="-arch x86_64"
  55. # ssh
  56. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  57. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  58. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  59. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  60. # For a full list of active aliases, run `alias`.
  61. #
  62. # Example aliases
  63. # alias zshconfig="mate ~/.zshrc"
  64. # alias ohmyzsh="mate ~/.oh-my-zsh"
  65. #
  66. export NVM_DIR="$HOME/.nvm"
  67. [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
  68. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
  69. export EDITOR=nvim
  70. export ANDROID_HOME=/usr/local/opt/android-sdk
  71. export PATH=$PATH:$ANDROID_HOME/tools
  72. export PATH=$PATH:$ANDROID_HOME/platform-tools
  73. export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
  74. export LC_ALL="en_US.UTF-8"