Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1 autoload -Uz compinit promptinit
- 2 compinit
- 3 promptinit
- 4 export ZSH=$HOME/.config/zsh
- 5 ZSH_THEME="robbyrussel"
- 6
- 7 HISTFILE=~/.zsh_history
- 8
- 9 autoload -U colors
- 10 colors
- 11
- 12 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
- 13 zle -N up-line-or-beginning-search
- 14 zle -N down-line-or-beginning-search
- 15
- 16 [[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
- 17 [[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
- 18
- 19 bindkey "^[[3~" delete-char
- 20 bindkey "^[3;5~" delete-char
- 21
- 22 autoload -Uz promptinit
- 23 promptinit
- 24
- 25 # This will set the default prompt to the walters theme
- 26 prompt adam1
- 27 if [[ $TERM == xterm-termite ]]; then
- 28 . /etc/profile.d/vte.sh
- 29 __vte_osc7
- 30 fi
- 31
- 32 export WINEARCH=win64
- 33 export EDITOR=/usr/bin/nvim
- 34 export VISUAL=/usr/bin/nvim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement