add gnat if we have it

This commit is contained in:
Aaron Bieber 2020-12-28 07:30:05 -07:00
parent 63f6fd1feb
commit 07491f8e9e

10
.zlogin
View File

@ -4,7 +4,15 @@ if [ -d ~/src/plan9port ]; then
fi
export PLAN9
export PATH=$PATH:$PLAN9/bin:$HOME/go/bin
PATH=$PATH:$PLAN/bin
if [ -d ~/opt/GNAT/2020/bin ]; then
PATH=$PATH:~/opt/GNAT/2020/bin
fi
PATH=$PATH:$HOME/go/bin:$HOME/bin
export PATH
# That sweet sweet ^W
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'