blob: 2c780fb3fa178911d037640cab4475ddbd55a8ee (
plain)
| 1
2
3
4
5
6
7
8
 | #!/bin/sh
# Craig Jennings <c@cjennings.net> 
# Settings FreeBSD specific, sourced by .profile
# make delete do the right thing for freebsd
if echo "$(uname)" | grep -q "FreeBSD"; then
   bindkey "\e[3~" delete-char
fi
 |