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
|
|
|
|
# End of lines added by compinstall
|
|
|
|
# Lines configured by zsh-newuser-install
|
|
|
|
HISTFILE=~/.histfile
|
2016-02-21 16:40:16 +01:00
|
|
|
HISTSIZE=2000
|
|
|
|
SAVEHIST=2000
|
2015-09-19 22:49:04 +02:00
|
|
|
setopt appendhistory beep nomatch notify autocd histignoredups
|
|
|
|
|
|
|
|
bindkey -e
|
|
|
|
# End of lines configured by zsh-newuser-install
|
|
|
|
|
|
|
|
# Arrows in the Completition menu
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
|
|
|
|
# colors
|
|
|
|
autoload -U colors && colors
|
|
|
|
|
|
|
|
# Load with prompt
|
|
|
|
autoload -U promptinit
|
|
|
|
promptinit
|
|
|
|
|
|
|
|
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}/\~}
|
|
|
|
echo -ne "\e]2;${tab_label}\a"
|
|
|
|
}
|
|
|
|
|
2015-11-13 18:25:47 +01:00
|
|
|
# Report CPU usage for commands running longer than 5 seconds
|
|
|
|
REPORTTIME=1
|
|
|
|
|
2016-01-04 22:27:00 +01:00
|
|
|
alias ../..='cd ../..'
|
|
|
|
alias ../../..='cd ../../..'
|
|
|
|
|
2016-02-23 22:53:18 +01:00
|
|
|
. ~/.profile
|
2016-11-07 14:29:31 +01:00
|
|
|
|
|
|
|
# perl stuff
|
|
|
|
PATH="/home/fnedoluha/perl5/bin${PATH:+:${PATH}}"; export PATH;
|
|
|
|
PERL5LIB="/home/fnedoluha/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
|
|
|
|
PERL_LOCAL_LIB_ROOT="/home/fnedoluha/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
|
|
|
|
PERL_MB_OPT="--install_base \"/home/fnedoluha/perl5\""; export PERL_MB_OPT;
|
|
|
|
PERL_MM_OPT="INSTALL_BASE=/home/fnedoluha/perl5"; export PERL_MM_OPT;
|