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.

100 lines
3.0KB

  1. . ~/.profile
  2. # Path to your oh-my-zsh installation.
  3. ZSH=/usr/share/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="bullet-train"
  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=~/.oh-my-zsh
  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 adb archlinux sudo zsh-syntax-highlighting history-substring-search)
  41. # source ~/.oh-my-zsh/plugins/zsh-autosuggestions/autosuggestions.zsh
  42. # zle-line-init() {
  43. # zle autosuggest-start
  44. # }
  45. # zle -N zle-line-init
  46. # User configuration
  47. # export MANPATH="/usr/local/man:$MANPATH"
  48. # You may need to manually set your language environment
  49. # export LANG=en_US.UTF-8
  50. # Preferred editor for local and remote sessions
  51. # if [[ -n $SSH_CONNECTION ]]; then
  52. # export EDITOR='vim'
  53. # else
  54. # export EDITOR='mvim'
  55. # fi
  56. # Compilation flags
  57. # export ARCHFLAGS="-arch x86_64"
  58. # ssh
  59. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  60. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  61. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  62. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  63. # For a full list of active aliases, run `alias`.
  64. #
  65. # Example aliases
  66. # alias zshconfig="mate ~/.zshrc"
  67. # alias ohmyzsh="mate ~/.oh-my-zsh"
  68. alias q='exit'
  69. alias tmux='tmux -2'
  70. alias v=nvim
  71. alias color='msgcat --color=test'
  72. ZSH_CACHE_DIR=$HOME/.oh-my-zsh-cache
  73. if [[ ! -d $ZSH_CACHE_DIR ]]; then
  74. mkdir $ZSH_CACHE_DIR
  75. fi
  76. source $ZSH/oh-my-zsh.sh