Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- source /usr/share/zsh/plugins/title.zsh
- source ~/.zsh_aliases
- source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh
- source /usr/share/zsh/plugins/sudo.plugin.zsh
- source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
- bindkey "[1~" beginning-of-line
- bindkey "[4~" end-of-line
- bindkey "^[[2~" overwrite-mode
- bindkey "^[[3~" delete-char
- zmodload zsh/terminfo
- bindkey '^[[A' history-substring-search-up
- bindkey '^[[B' history-substring-search-down
- #framebuffer colors
- if [ "$TERM" = "linux" ]; then
- /home/akari/bin/tty-colorize
- fi
- function run() {
- number=$1
- shift
- for n in $(seq $number); do
- $@
- done
- }
- eval $(dircolors ~/.dircolors)
- export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=7'
- export EDITOR=nano
- setopt inc_append_history
- setopt promptsubst
- unsetopt equals
- PROMPT='%B%F{green}>%B%F{yellow}>%B%F{cyan}> %f'
- RPROMPT='%B%F{yellow}%~ %B%F{red}(。>﹏<。)'
- # Lines configured by zsh-newuser-install
- HISTFILE=~/.histfile
- HISTSIZE=10000
- SAVEHIST=10000
- setopt autocd
- unsetopt beep
- bindkey -e
- # End of lines configured by zsh-newuser-install
- # The following lines were added by compinstall
- zstyle :compinstall filename '/home/akari/.zshrc'
- autoload -Uz compinit
- compinit
- # End of lines added by compinstall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement