config + scwryptsv3.7.2 update

This commit is contained in:
Wryn (yage) Wagner 2023-11-11 07:16:04 -07:00
parent 26a34d1c84
commit adbbb0fd83
3 changed files with 19 additions and 6 deletions

21
bin/vim
View File

@ -1,11 +1,22 @@
#!/bin/sh
#####################################################################
VIM_ARGS=(-p)
VIM=/usr/bin/vim
#####################################################################
SOURCE_BUILD=/usr/local/bin/vim
[ -f $SOURCE_BUILD ] && VIM=$SOURCE_BUILD
BUILD_PREFERENCE=(
/usr/local/bin/vim # source build
/usr/bin/vim # package manager build
)
for V in ${BUILD_PREFERENCE[@]}
do
[ -f $V ] && VIM=$V && break
done
[ -f $VIM ] || {
echo "unable to find a build for vim; is it installed?" >&2
exit 1
}
#####################################################################
exec $(printf "%q " $VIM ${VIM_ARGS[@]} $@)
exec $VIM ${VIM_ARGS[@]} "$@"

View File

@ -13,6 +13,8 @@
[pull]
default = current
rebase = true
[rebase]
autostash = true
[color]
diff = always
status = always

@ -1 +1 @@
Subproject commit 2034325ac9153b6b338947443a21cdfefb8b9cb2
Subproject commit 15942bb08d5c3f413941faae0eff7f1d49a00e49