mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
506 B
19 lines
506 B
#!/usr/bin/env bash
|
|
THIS_DIR=$(dirname $(readlink -f $0))
|
|
|
|
nvconf="$THIS_DIR/$PKG"
|
|
|
|
if [[ ! -d $nvconf ]]; then
|
|
echo "invalid \$PKG. Available values:"
|
|
ls `dirname $nvconf`
|
|
exit
|
|
fi
|
|
|
|
|
|
mkdir -p $nvconf/cache
|
|
|
|
if [ -z "$GUITERM" ]; then
|
|
env XDG_CACHE_DIR=$nvconf/cache XDG_CACHE_HOME=$nvconf/cache XDG_DATA_HOME=$nvconf/share XDG_CONFIG_HOME=$nvconf nvim $@
|
|
else
|
|
$GUITERM -e env XDG_CACHE_DIR=$nvconf/cache XDG_CACHE_HOME=$nvconf/cache XDG_DATA_HOME=$nvconf/share XDG_CONFIG_HOME=$nvconf nvim $@
|
|
fi
|
|
|