From 0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 16 Mar 2020 23:33:42 +0100 Subject: Well I'm using Arch again --- .../nvim/plugged/vim-airline-themes/.travis.yml | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .config/nvim/plugged/vim-airline-themes/.travis.yml (limited to '.config/nvim/plugged/vim-airline-themes/.travis.yml') diff --git a/.config/nvim/plugged/vim-airline-themes/.travis.yml b/.config/nvim/plugged/vim-airline-themes/.travis.yml new file mode 100644 index 0000000..ff524c1 --- /dev/null +++ b/.config/nvim/plugged/vim-airline-themes/.travis.yml @@ -0,0 +1,47 @@ +language: vim + +cache: + directories: + - $HOME/.vvm +matrix: + include: + - os: linux + env: + - VIM_VERSION=8.0.0000 + - os: linux + env: + - VIM_VERSION=8.1.0000 + - os: linux + env: + - VIM_VERSION=8.2.0000 + - os: osx + env: + - VIM_VERSION=8.0.0000 + - os: osx + env: + - VIM_VERSION=8.1.0000 + - os: osx + env: + - VIM_VERSION=8.2.0000 + +before_install: + - curl https://raw.githubusercontent.com/kana/vim-version-manager/master/bin/vvm | python - setup; true + - source ~/.vvm/etc/login + - vvm update_itself + - vvm use vimorg--v$VIM_VERSION --install --with-features=huge + +before_script: | + git clone https://github.com/junegunn/vader.vim.git + git clone https://github.com/vim-airline/vim-airline + find $PWD/autoload/airline/themes -name "*.vim" > themes.txt + +script: | + vim --not-a-term -Nu <(cat << VIMRC + filetype off + set rtp+=vader.vim + set rtp+=vim-airline + set rtp+=. + set rtp+=after + filetype plugin indent on + syntax enable + VIMRC) -c 'Vader! test/*' > /dev/null -- cgit v1.2.3