Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- source ~/.zsh_aliases
- source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
- source /usr/local/opt/zsh-history-substring-search/zsh-history-substring-search.zsh
- zmodload zsh/terminfo
- bindkey "^[[A" history-substring-search-up
- bindkey "^[[B" history-substring-search-down
- function run() {
- number=$1
- shift
- for n in $(seq $number); do
- $@
- done
- }
- export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=0'
- export EDITOR=nano
- export HISTSIZE=10000
- export SAVEHIST=10000
- export HISTFILE=~/.zshistory
- setopt inc_append_history
- # Lines configured by zsh-newuser-install
- HISTFILE=~/.histfile
- HISTSIZE=10000
- SAVEHIST=10000
- setopt autocd
- bindkey -e
- # End of lines configured by zsh-newuser-install
- # The following lines were added by compinstall
- zstyle :compinstall filename '/Users/akari/.zshrc'
- autoload -Uz compinit
- compinit
- # End of lines added by compinstall
- setopt promptsubst
- unsetopt equals
- PROMPT='%B%F{yellow}>> %f'
- RPROMPT='%B%F{yellow}%~ %B%F{red}(。>﹏<。)'
- test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"
Advertisement
Add Comment
Please, Sign In to add comment