dotfiles/.zshrc

37 lines
980 B
Bash
Raw Permalink Normal View History

2021-03-06 17:33:52 +01:00
# The following lines were added by compinstall
zstyle ':completion:*' completer _complete _ignored _approximate
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' matcher-list '' 'r:|[._-]=** r:|=**'
zstyle :compinstall filename '/home/x/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
2021-09-11 19:59:04 +02:00
2021-03-06 17:33:52 +01:00
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
2021-09-11 19:59:04 +02:00
HISTSIZE=300000
SAVEHIST=300000
2021-03-06 17:33:52 +01:00
setopt appendhistory notify
bindkey -v
bindkey -v '^?' backward-delete-char
bindkey -v '^H' backward-delete-char
#bindkey -v '^G' '\e'
# End of lines configured by zsh-newuser-install
autoload -z edit-command-line
zle -N edit-command-line
bindkey -M vicmd ' ' edit-command-line
2021-09-11 19:59:04 +02:00
PROMPT="$ "
2021-09-21 21:06:55 +02:00
export PATH="${PATH}:${HOME}/.local/bin"
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
2021-07-09 20:09:48 +02:00
#echo -ne "\033]0;$(basename `dirname $PWD`)/$(basename ${PWD})\007"
#chpwd() {
# echo -ne "\033]0;$(basename `dirname $PWD`)/$(basename ${PWD})\007"
#}