1
0
mirror of https://github.com/akelge/vim synced 2025-07-13 01:52:08 +00:00

Added function fancyTerm that checks if we are on a "fancy" terminal

Changed prompt management to take in account "screen"
This commit is contained in:
2014-03-03 11:26:12 +00:00
parent 1dae364411
commit b45d13450a
6 changed files with 11 additions and 6 deletions

View File

@ -27,7 +27,9 @@ function loadRC {
fi
# Add local customization file, svn ignored
[ -f $1/99-local.zsh ] || echo "# Local customizations" > $1/99-local.zsh
if [ $EUID -eq 0 ]; then
[ -f $1/99-local.zsh ] || echo "# Local customizations" > $1/99-local.zsh
fi
# Process all .zsh files
for zshFile in $1/[0-9]*.zsh; do