forked from shiftc/vim_config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Check vim * Use python3 * Specify 3.6 * Update beforehand * Add ppa * Yes * Compose * && * Split * Refactor * Chmod +x * Add pathlib * Sudo * Typing * Ci * Unique * Ci
- Loading branch information
1 parent
91755cd
commit 936ac85
Showing
3 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
sudo: required | ||
dist: trusty | ||
|
||
before_install: | ||
- sudo apt-get install shellcheck python vim | ||
- pip install --user vim-vint | ||
|
||
script: | ||
# - vint init.vim layers/*.vim core/*.vim | ||
- shellcheck *.sh | ||
- chmod +x install.sh | ||
- git clone https://github.com/hecal3/vim-leader-guide ~/.vim/plugged/vim-leader-guide --depth=1 | ||
- ./install.sh | ||
|
||
before_install: ci/before_install.sh | ||
script: ci/script.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
sudo add-apt-repository ppa:deadsnakes/ppa -y | ||
sudo apt-get update | ||
sudo apt-get install shellcheck python3.6 -y | ||
sudo pip install vim-vint pathlib typing enum34 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
find . -name "*.vim" -type f | grep -v "cache.vim" | while read filename; do vint -e "$filename"; done | ||
|
||
shellcheck *.sh | ||
|
||
./install.sh |