diff options
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/bin/lvim | 2 | ||||
| -rw-r--r-- | utils/bin/test_runner.sh | 17 | ||||
| -rwxr-xr-x | utils/installer/install-neovim-from-release | 2 | ||||
| -rwxr-xr-x | utils/installer/install.sh | 30 | 
4 files changed, 33 insertions, 18 deletions
| diff --git a/utils/bin/lvim b/utils/bin/lvim index 2303be3c..e4cd9c75 100644 --- a/utils/bin/lvim +++ b/utils/bin/lvim @@ -1,6 +1,6 @@  #!/bin/sh  export LUNARVIM_RUNTIME_DIR="${LUNARVIM_RUNTIME_DIR:-$HOME/.local/share/lunarvim}" -export LUNARVIM_CONFIG_DIR="${LUNARVIM_RUNTIME_DIR:-$HOME/.config/lvim}" +export LUNARVIM_CONFIG_DIR="${LUNARVIM_CONFIG_DIR:-$HOME/.config/lvim}"  exec nvim -u "$LUNARVIM_RUNTIME_DIR/lvim/init.lua" "$@" diff --git a/utils/bin/test_runner.sh b/utils/bin/test_runner.sh index 5b46e578..0dabd77f 100644 --- a/utils/bin/test_runner.sh +++ b/utils/bin/test_runner.sh @@ -1,9 +1,20 @@  #!/usr/bin/env bash  set -e -# TODO: allow running with a minimal_init.lua +export LUNARVIM_CONFIG_DIR="${LUNARVIM_CONFIG_DIR:-"$HOME/.config/lvim"}" +export LUNARVIM_RUNTIME_DIR="${LUNARVIM_RUNTIME_DIR:-"$HOME/.local/share/lunarvim"}" + +export LVIM_TEST_ENV=true + +rm -f "$LUNARVIM_CONFIG_DIR/plugin/packer_compiled.lua" + +lvim() { +  # TODO: allow running with a minimal_init.lua +  nvim -u "$LUNARVIM_RUNTIME_DIR/lvim/init.lua" --cmd "set runtimepath+=$LUNARVIM_RUNTIME_DIR/lvim" "$@" +} +  if [ -n "$1" ]; then -  nvim --headless -u ./init.lua -c "lua require('plenary.busted').run('$1')" +  lvim --headless -c "lua require('plenary.busted').run('$1')"  else -  nvim --headless -u ./init.lua -c "PlenaryBustedDirectory tests/ { minimal_init = './init.lua' }" +  lvim --headless -c "PlenaryBustedDirectory tests/ { minimal_init = './init.lua' }"  fi diff --git a/utils/installer/install-neovim-from-release b/utils/installer/install-neovim-from-release index a2ba0513..e20a4804 100755 --- a/utils/installer/install-neovim-from-release +++ b/utils/installer/install-neovim-from-release @@ -52,7 +52,7 @@ function download_neovim() {  function verify_neovim() {    echo "Verifying the installation.." -  DOWNLOADED_SHA="$(sha256sum "$DOWNLOAD_DIR/$ARCHIVE_NAME.tar.gz" | awk '{print $1}')" +  DOWNLOADED_SHA="$(openssl dgst -sha256 "$DOWNLOAD_DIR/$ARCHIVE_NAME.tar.gz" | awk '{print $2}')"    if [ "$RELEASE_SHA" != "$DOWNLOADED_SHA" ]; then      echo "Error! checksum mis-match." diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 02fc6800..876e3cd0 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -2,7 +2,7 @@  set -eo pipefail  #Set branch to master unless specified by the user -declare -r LV_BRANCH="${LV_BRANCH:-rolling}" +declare LV_BRANCH="${LV_BRANCH:-"rolling"}"  declare -r LV_REMOTE="${LV_REMOTE:-lunarvim/lunarvim.git}"  declare -r INSTALL_PREFIX="${INSTALL_PREFIX:-"$HOME/.local"}" @@ -10,16 +10,16 @@ declare -r XDG_DATA_HOME="${XDG_DATA_HOME:-"$HOME/.local/share"}"  declare -r XDG_CACHE_HOME="${XDG_CACHE_HOME:-"$HOME/.cache"}"  declare -r XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-"$HOME/.config"}" -# TODO: Use a dedicated cache directory #1256 -declare -r NEOVIM_CACHE_DIR="$XDG_CACHE_HOME/nvim" -  declare -r LUNARVIM_RUNTIME_DIR="${LUNARVIM_RUNTIME_DIR:-"$XDG_DATA_HOME/lunarvim"}"  declare -r LUNARVIM_CONFIG_DIR="${LUNARVIM_CONFIG_DIR:-"$XDG_CONFIG_HOME/lvim"}" +# TODO: Use a dedicated cache directory #1256 +declare -r LUNARVIM_CACHE_DIR="$XDG_CACHE_HOME/nvim" +declare -r LUNARVIM_PACK_DIR="$LUNARVIM_RUNTIME_DIR/site/pack"  declare -a __lvim_dirs=(    "$LUNARVIM_CONFIG_DIR"    "$LUNARVIM_RUNTIME_DIR" -  "$NEOVIM_CACHE_DIR" # for now this is shared with neovim +  "$LUNARVIM_CACHE_DIR"  )  declare -a __npm_deps=( @@ -51,6 +51,7 @@ EOF    detect_platform    if [ -n "$GITHUB_ACTIONS" ]; then +    LV_BRANCH="${GITHUB_REF##*/}"      install_packer      setup_lvim      exit 0 @@ -91,11 +92,7 @@ EOF        ;;    esac -  if [ -e "$LUNARVIM_RUNTIME_DIR/site/pack/packer/start/packer.nvim" ]; then -    echo "Packer already installed" -  else -    install_packer -  fi +  install_packer    __add_separator "80" @@ -233,8 +230,15 @@ function backup_old_config() {  }  function install_packer() { -  git clone --depth 1 https://github.com/wbthomason/packer.nvim \ -    "$LUNARVIM_RUNTIME_DIR/site/pack/packer/start/packer.nvim" +  if [ -e "$LUNARVIM_PACK_DIR/packer/start/packer.nvim" ]; then +    echo "Packer already installed" +  else +    if ! git clone --depth 1 "https://github.com/wbthomason/packer.nvim" \ +      "$LUNARVIM_PACK_DIR/packer/start/packer.nvim"; then +      echo "Failed to clone Packer. Installation failed." +      exit 1 +    fi +  fi  }  function clone_lvim() { @@ -271,7 +275,7 @@ function setup_lvim() {    cp "$LUNARVIM_RUNTIME_DIR/lvim/utils/installer/config.example-no-ts.lua" \      "$LUNARVIM_CONFIG_DIR/config.lua" -  nvim -u "$LUNARVIM_RUNTIME_DIR/lvim/init.lua" --headless \ +  "$INSTALL_PREFIX/bin/lvim" --headless \      -c 'autocmd User PackerComplete quitall' \      -c 'PackerSync' | 
