1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:20:03 +08:00
SpaceVim/bundle/ChineseLinter.vim/.ci/install.sh
Eric Wong 13f564b23a chore(chinese): use bundle ChineseLinter
update to d819606eebc82dad34b2a9b7b1a861844380df84
2024-03-05 12:56:14 +08:00

23 lines
697 B
Bash

#!/usr/bin/env bash
# Fail on unset variables and command errors
set -ue -o pipefail
# Prevent commands misbehaving due to locale differences
export LC_ALL=C
pip install covimerage
git clone --depth=1 https://github.com/Shougo/dein.vim.git ~/.cache/vimfiles/repos/github.com/Shougo/dein.vim
if [[ ! -d "${DEPS}/_neovim" ]]; then
mkdir -p "${DEPS}/_neovim"
wget -q -O - https://github.com/neovim/neovim/releases/download/nightly/nvim-${TRAVIS_OS_NAME}64.tar.gz \
| tar xzf - --strip-components=1 -C "${DEPS}/_neovim"
fi
export PATH="${DEPS}/_neovim/bin:${PATH}"
echo "\$PATH: \"${PATH}\""
export VIM="${DEPS}/_neovim/share/nvim/runtime"
echo "\$VIM: \"${VIM}\""
nvim --version