blob: 8afb4436e52f7cf2f4225106cec81171a36b65de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# The following lines were added by compinstall
zstyle ':completion:*' completer _complete _expand_alias _ignored _approximate
zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]} m:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=* r:|=*'
zstyle ':completion:*' max-errors 3
zstyle ':completion:*' prompt '%e'
zstyle ':completion:*' squeeze-slashes true
zstyle :compinstall filename "$HOME/.zshrc"
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' menu select=1
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
autoload -U compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.cache/zsh/zshhist
HISTSIZE=1000
SAVEHIST=1000
setopt autocd
unsetopt beep
bindkey -v
# End of lines configured by zsh-newuser-install
# Plugins
source ~/.config/zsh/zshvimodes
# Prompt
setopt PROMPT_SUBST
PROMPT='%F{green}%n%f%F{cyan}@%f%F{blue}%m%#%f%F{magenta}%~>%f'
RPROMPT='%B${vim_mode}%b%(?..[%?])'
# setopt completealiases
[ -f "$HOME/.profile" ] && . "$HOME/.profile"
[ -f "$HOME/.config/zsh/zshenv" ] . "$HOME/.config/zsh/zshenv"
[ -f "$HOME/.config/zsh/zshalias" ] . "$HOME/.config/zsh/zshalias"
[ -f "$HOME/.config/zsh/zshcomp"] . "$HOME/.config/zsh/zshcomp"
#wal colorscheme
[ -f "$HOME/.cache/wal/colors-tty.sh" ] && source ~/.cache/wal/colors-tty.sh ; true
|