X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=93feb7d33f41383e2b8e64b64652e66ee7f6593e;hb=e63d539ffb618d18e67032f43301a0e99f7598be;hp=ddee69f157c24111c8d3daf4b8e839ad34ac3d8d;hpb=379429a85e512e8b7e9a3c85837a78b0c24677e4;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index ddee69f..93feb7d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -7,6 +7,9 @@ bindkey -v # Be paranoid, new files are readable/writable by me only. umask 077 +# Make sure core dumps are created. +ulimit -c unlimited + # Use history and store it in ~/.zsh/history. HISTSIZE=1000 SAVEHIST=1000 @@ -99,6 +102,17 @@ TRAPINT() { return $1 } +# Execute all periodic functions every hour. +PERIOD=3600 +# Display TODOs stored in ~/.todo if this file exists. Run every hour to make +# clear they should be completed ;-). +todo() { + if [[ -f ~/.todo ]]; then + cat ~/.todo | $PAGER + fi +} +add-zsh-hook periodic todo + # Simplify calls to less, automatically redirects all output. alias -g L='2>&1 | less' # Simplify calls to colordiff, output is also piped through less.