Simple html editor using grapeJS

Test bed to test neovim distros
This commit is contained in:
2023-03-16 16:41:37 +05:30
parent 9b816966a2
commit 2e6e0a997d
7 changed files with 61 additions and 1 deletions
+12
View File
@@ -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