config updates

This commit is contained in:
2023-09-05 10:40:47 -06:00
parent 34b98696a1
commit e948c6648b
5 changed files with 40 additions and 2 deletions

11
bin/vim
View File

@ -1,2 +1,11 @@
#!/bin/sh
exec /usr/local/bin/vim -p "$@"
#####################################################################
VIM_ARGS=(-p)
VIM=/usr/bin/vim
#####################################################################
SOURCE_BUILD=/usr/local/bin/vim
[ -f $SOURCE_BUILD ] && VIM=$SOURCE_BUILD
#####################################################################
exec $(printf "%q " $VIM ${VIM_ARGS[@]} $@)