.zshrc 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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/pomelo/.oh-my-zsh"
  5. # Set name of the theme to load --- if set to "random", it will
  6. # load a random theme each time oh-my-zsh is loaded, in which case,
  7. # to know which specific one was loaded, run: echo $RANDOM_THEME
  8. # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
  9. ZSH_THEME="fox"
  10. # Set list of themes to pick from when loading at random
  11. # Setting this variable when ZSH_THEME=random will cause zsh to load
  12. # a theme from this variable instead of looking in $ZSH/themes/
  13. # If set to an empty array, this variable will have no effect.
  14. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  15. # Uncomment the following line to use case-sensitive completion.
  16. # CASE_SENSITIVE="true"
  17. # Uncomment the following line to use hyphen-insensitive completion.
  18. # Case-sensitive completion must be off. _ and - will be interchangeable.
  19. # HYPHEN_INSENSITIVE="true"
  20. # Uncomment the following line to disable bi-weekly auto-update checks.
  21. # DISABLE_AUTO_UPDATE="true"
  22. # Uncomment the following line to automatically update without prompting.
  23. # DISABLE_UPDATE_PROMPT="true"
  24. # Uncomment the following line to change how often to auto-update (in days).
  25. # export UPDATE_ZSH_DAYS=13
  26. # Uncomment the following line if pasting URLs and other text is messed up.
  27. # DISABLE_MAGIC_FUNCTIONS="true"
  28. # Uncomment the following line to disable colors in ls.
  29. # DISABLE_LS_COLORS="true"
  30. # Uncomment the following line to disable auto-setting terminal title.
  31. # DISABLE_AUTO_TITLE="true"
  32. # Uncomment the following line to enable command auto-correction.
  33. # ENABLE_CORRECTION="true"
  34. # Uncomment the following line to display red dots whilst waiting for completion.
  35. # Caution: this setting can cause issues with multiline prompts (zsh 5.7.1 and newer seem to work)
  36. # See https://github.com/ohmyzsh/ohmyzsh/issues/5765
  37. # COMPLETION_WAITING_DOTS="true"
  38. # Uncomment the following line if you want to disable marking untracked files
  39. # under VCS as dirty. This makes repository status check for large repositories
  40. # much, much faster.
  41. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  42. # Uncomment the following line if you want to change the command execution time
  43. # stamp shown in the history command output.
  44. # You can set one of the optional three formats:
  45. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  46. # or set a custom format using the strftime function format specifications,
  47. # see 'man strftime' for details.
  48. # HIST_STAMPS="mm/dd/yyyy"
  49. # Would you like to use another custom folder than $ZSH/custom?
  50. # ZSH_CUSTOM=/path/to/new-custom-folder
  51. # Which plugins would you like to load?
  52. # Standard plugins can be found in $ZSH/plugins/
  53. # Custom plugins may be added to $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. source $ZSH/oh-my-zsh.sh
  58. # User configuration
  59. # export MANPATH="/usr/local/man:$MANPATH"
  60. # You may need to manually set your language environment
  61. # export LANG=en_US.UTF-8
  62. # Preferred editor for local and remote sessions
  63. # if [[ -n $SSH_CONNECTION ]]; then
  64. # export EDITOR='vim'
  65. # else
  66. # export EDITOR='mvim'
  67. # fi
  68. # Compilation flags
  69. # export ARCHFLAGS="-arch x86_64"
  70. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  71. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  72. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  73. # For a full list of active aliases, run `alias`.
  74. #
  75. # Example aliases
  76. # alias zshconfig="mate ~/.zshrc"
  77. # alias ohmyzsh="mate ~/.oh-my-zsh"
  78. # Lines configured by zsh-newuser-install
  79. HISTFILE=~/.histfile
  80. HISTSIZE=1000
  81. SAVEHIST=1000
  82. setopt beep extendedglob nomatch notify
  83. unsetopt autocd
  84. bindkey -e
  85. # End of lines configured by zsh-newuser-install
  86. # The following lines were added by compinstall
  87. # zstyle :compinstall filename '/home/avauz/.zshrc'
  88. # autoload -Uz compinit
  89. # compinit
  90. # End of lines added by compinstall
  91. # export GOROOT=/usr/local/go
  92. # export PATH=$PATH:$GOROOT/bin
  93. # export GOPATH=/home/avauz/golib
  94. # export PATH=$PATH:$GOPATH/bin
  95. # export GOPATH=$GOPATH:/home/avauz/go_code
  96. # Import colorscheme from 'wal' asynchronously
  97. # & # Run the process in the background.
  98. # ( ) # Hide shell job control messages.
  99. # Not supported in the "fish" shell.
  100. # (cat ~/.cache/wal/sequences &)
  101. # Alternative (blocks terminal for 0-3ms)
  102. # cat ~/.cache/wal/sequences &
  103. # To add support for TTYs this line can be optionally added.
  104. # source ~/.cache/wal/colors-tty.sh