.zshrc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # ZSH configuration file.
  2. # Path to your oh-my-zsh installation.
  3. export ZSH=/home/matthew/.oh-my-zsh
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. # Optionally, if you set this to "random", it'll load a random theme each
  7. # time that oh-my-zsh is loaded.
  8. ZSH_THEME="minimal"
  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=7
  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="dd.mm.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. # User configuration
  42. export PATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/bin:/sbin"
  43. #export MANPATH="/usr/local/man:$MANPATH"
  44. source $ZSH/oh-my-zsh.sh
  45. # You may need to manually set your language environment
  46. export LANG=en_GB.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/dsa_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. # Example aliases
  62. #alias zshconfig="mate ~/.zshrc"
  63. #alias ohmyzsh="mate ~/.oh-my-zsh"
  64. # ZSH syntax highlighting
  65. . /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh