aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/plugged/vim-airline-themes/.travis.yml
diff options
context:
space:
mode:
authorMarvin Borner2020-03-17 23:00:37 +0100
committerMarvin Borner2020-03-17 23:00:37 +0100
commiteb4fbe62bb1f24a1bae63792b234d1265c205091 (patch)
treea915642e7697ac2d39097592f8b13f247f57b42d /.config/nvim/plugged/vim-airline-themes/.travis.yml
parent0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 (diff)
Wht did I spend my whole day on a awesome vim config? :)
Diffstat (limited to '.config/nvim/plugged/vim-airline-themes/.travis.yml')
-rw-r--r--.config/nvim/plugged/vim-airline-themes/.travis.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/.config/nvim/plugged/vim-airline-themes/.travis.yml b/.config/nvim/plugged/vim-airline-themes/.travis.yml
deleted file mode 100644
index ff524c1..0000000
--- a/.config/nvim/plugged/vim-airline-themes/.travis.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-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