mirror of
https://github.com/harish2704/dotFiles.git
synced 2026-09-10 15:21:09 +00:00
Simple html editor using grapeJS
Test bed to test neovim distros
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
THIS_DIR=$(dirname $(readlink -f $0))
|
||||
|
||||
nvconf="$THIS_DIR/$PKG"
|
||||
|
||||
if [[ -d $nvconf ]]; then
|
||||
mkdir -p $nvconf/cache
|
||||
env XDG_CACHE_DIR=$nvconf/cache XDG_CACHE_HOME=$nvconf/cache XDG_DATA_HOME=$nvconf/share XDG_CONFIG_HOME=$nvconf nvim $@
|
||||
else
|
||||
echo "invalid \$PKG. Available values:"
|
||||
ls `dirname $nvconf`
|
||||
fi
|
||||
Reference in New Issue
Block a user