2015-09-19 22:49:04 +02:00
|
|
|
# The following lines were added by compinstall
|
|
|
|
|
|
|
|
zstyle ':completion:*' completer _complete _ignored
|
2016-01-04 22:18:20 +01:00
|
|
|
zstyle :compinstall filename '~/.zshrc'
|
2015-09-19 22:49:04 +02:00
|
|
|
|
|
|
|
autoload -Uz compinit
|
|
|
|
compinit
|
2018-05-08 13:33:04 +02:00
|
|
|
HISTFILE=~/.zsh_history
|
|
|
|
HISTSIZE=5000000
|
|
|
|
SAVEHIST=5000000
|
2015-09-19 22:49:04 +02:00
|
|
|
setopt appendhistory beep nomatch notify autocd histignoredups
|
|
|
|
|
|
|
|
bindkey -e
|
|
|
|
|
|
|
|
# Arrows in the Completition menu
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
|
|
|
|
# colors
|
|
|
|
autoload -U colors && colors
|
|
|
|
|
|
|
|
# Load with prompt
|
|
|
|
autoload -U promptinit
|
|
|
|
promptinit
|
|
|
|
|
2018-05-17 11:23:36 +02:00
|
|
|
PROMPT="%{$fg_no_bold[cyan]%}%n%{$reset_color%}%{$fg_no_bold[red]%}%#%{$reset_color%}%{$fg_no_bold[cyan]%}%m%{$reset_color%}%{$fg_no_bold[green]%}%~:%{$fg_no_bold[yellow]%}%?%{$fg_no_bold[green]%}$ %{$reset_color%}"
|
2015-11-26 17:34:23 +01:00
|
|
|
RPROMPT="%{$fg_no_bold[green]%}%~%{$reset_color%} [%{$fg_no_bold[yellow]%}%*%{$reset_color%}]"
|
2015-09-19 22:49:04 +02:00
|
|
|
|
2016-02-23 22:53:18 +01:00
|
|
|
# Bashish navigation
|
|
|
|
autoload -U select-word-style
|
|
|
|
select-word-style bash
|
|
|
|
|
2015-09-19 22:49:04 +02:00
|
|
|
# Show cwd in titlebar
|
|
|
|
precmd() {
|
|
|
|
tab_label=${PWD/${HOME}/\~}
|
2016-11-07 14:30:01 +01:00
|
|
|
echo -ne "\e]2;${HOST}:${tab_label}\a"
|
2015-09-19 22:49:04 +02:00
|
|
|
}
|
|
|
|
|
2018-05-08 13:33:04 +02:00
|
|
|
# Report CPU usage for commands running longer than 1 second
|
2015-11-13 18:25:47 +01:00
|
|
|
REPORTTIME=1
|
|
|
|
|
2018-05-14 16:42:04 +02:00
|
|
|
. ~/.profile
|