-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- && Added Vim resources
- Loading branch information
Carlos Cabanero
committed
Jun 17, 2024
1 parent
56fa7ee
commit bd22751
Showing
3 changed files
with
13 additions
and
1 deletion.
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
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
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,10 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
( | ||
cd Resources/vim | ||
curl -L https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip > runtime.zip | ||
unzip runtime.zip && mv runtime/* ./ && rm runtime.zip | ||
) | ||
|
||
echo "done" |