*
  * More advanced example: " `'\"()[]{}"
  */
-char *worddelimiters = " ";
+wchar_t *worddelimiters = L" ";
 
 /* selection timeouts (in milliseconds) */
 static unsigned int doubleclicktimeout = 300;
 
 tls on
 tls_fingerprint BE:B9:55:15:31:91:FD:0A:C1:E5:DB:FE:C7:94:AB:8D:49:9D:B2:0E:2C:6B:4A:78:04:FD:0E:76:AE:2B:63:44
 user mlubbers
+#proxy_host localhost
+#proxy_port 8008
 passwordeval pass science.ru.nl/mlubbers
 from mart@cs.ru.nl
 
 application/pdf; pdftotext '%s' -; copiousoutput;
 application/msword; libreoffice --headless --cat '%s'; copiousoutput;
 application/ics; khal printics '%s'; copiousoutput;
+text/calendar; khal printics '%s'; copiousoutput;
 application/vnd.openxmlformats-officedocument.wordprocessingml.document; libreoffice --headless --cat '%s'; copiousoutput;
 application/vnd.oasis.opendocument.text; libreoffice --headless --cat '%s'; copiousoutput;
 
 # Basic information
 set from="mart@martlubbers.net"
-alternates "mart@(cs\.ru\.nl|mart@martlubbers\.net)"
+alternates "(mart@cs\.ru\.nl|mart@martlubbers\.net|Mart\.Lubbers@ru\.nl)"
 set use_from=yes
 set reverse_name=yes
 set envelope_from=yes
 auto_view application/pdf
 # khal
 auto_view application/ics
+auto_view text/calendar
 # libreoffice --cat
 auto_view application/vnd.openxmlformats-officedocument.wordprocessingml.document
 auto_view application/msword
 
 #!/bin/sh
 newmail="$(find ~/.local/share/offlineimap/mail/INBOX/new/ -type f | wc -l)"
-if [ "$newmail" -ne 0 ]
+if [ "$newmail" -eq 1 ]
+then
+       notify-send "1 new email!"
+else if [ "$newmail" -ne 0 ]
 then
        notify-send "$newmail new emails!"
 fi
 
+++ /dev/null
-[user]
-       name = Mart Lubbers
-       email = mart@martlubbers.net
-
-[alias]
-       tree = log --decorate --oneline --graph --all
-       pushm = push origin master
-       pushd = push origin develop
 
 export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass
 
 # XDG fixes
+alias svn="svn --config-dir \"${XDG_CONFIG_HOME:-$HOME/.config}\"/subversion"
+alias tmux="tmux -f \"${XDG_CONFIG_HOME:-$HOME/.config}/tmux/config\""
 export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}"/notmuch/config
 export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}"/pass
 export TMUX_TMPDIR="$XDG_RUNTIME_DIR"
 alias grep='grep --color=auto'
 alias vi=vim
 alias latexmk='make -f ~/.local/bin/latex.mk'
-alias tmux="tmux -f \"${XDG_CONFIG_HOME:-$HOME/.config}/tmux/config\""
 alias shutdown="echo \"Are you sure? I\'m Ygdrassil\" && read && shutdown"
 
 . /etc/bash_completion