From 937c85103ec414063a275dfda9d408db14d6edc1 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Tue, 25 Aug 2015 21:49:47 -0500 Subject: [PATCH] add terminfo from home directory if it exists --- zsh/zshrc.symlink | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/zshrc.symlink b/zsh/zshrc.symlink index 57fea77..915f561 100644 --- a/zsh/zshrc.symlink +++ b/zsh/zshrc.symlink @@ -3,6 +3,9 @@ export ZSH=$DOTFILES/zsh # display how long all tasks over 10 seconds take export REPORTTIME=10 + +[[ -e ~/.terminfo ]] && export TERMINFO_DIRS=~/.terminfo:/usr/share/terminfo + # define the code directory if [[ -d ~/code ]]; then export CODE_DIR=~/code