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
|
|
|
|
2016-02-29 21:28:55 +01:00
|
|
|
# Completion
|
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
|
2018-05-30 10:22:44 +02:00
|
|
|
setopt appendhistory beep nomatch notify autocd histignoredups correct autopushd pushdsilent pushdtohome pushdignoredups pushdminus
|
2015-09-19 22:49:04 +02:00
|
|
|
|
2016-02-29 21:28:55 +01:00
|
|
|
# emacs keybindings
|
2015-09-19 22:49:04 +02:00
|
|
|
bindkey -e
|
|
|
|
|
2016-02-29 21:28:55 +01:00
|
|
|
# Prevent need to reset terminal
|
|
|
|
ttyctl -f
|
2015-09-19 22:49:04 +02:00
|
|
|
|
|
|
|
# Arrows in the Completition menu
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
|
|
|
|
# colors
|
|
|
|
autoload -U colors && colors
|
|
|
|
|
|
|
|
# Load with prompt
|
|
|
|
autoload -U promptinit
|
|
|
|
promptinit
|
|
|
|
|
2018-06-03 00:25:40 +02:00
|
|
|
PROMPT="%{$fg_no_bold[blue]%}%n%{$reset_color%}%{$fg_no_bold[red]%}%#%{$reset_color%}%{$fg_no_bold[blue]%}%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
|
|
|
|
|
2016-02-29 21:28:55 +01:00
|
|
|
# Dirstack
|
|
|
|
DIRSTACKSIZE=20
|
2018-05-30 10:29:57 +02:00
|
|
|
|
2020-01-13 22:15:19 +01:00
|
|
|
# configure gpg agent
|
|
|
|
GPG_TTY=$(tty)
|
|
|
|
export GPG_TTY
|
|
|
|
|
2019-11-09 19:04:03 +01:00
|
|
|
# source fzf
|
|
|
|
. /usr/share/doc/fzf/examples/key-bindings.zsh
|
2019-11-09 20:37:32 +01:00
|
|
|
|
2020-01-13 22:14:45 +01:00
|
|
|
# source banner
|
|
|
|
. ~/.banner
|