-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174 from XDRwastaken/ZigIsBetter
Horizon: the `README.md and stuff` update
- Loading branch information
Showing
10 changed files
with
54 additions
and
105 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"soft_wrap": "editor_width", | ||
"telemetry": { | ||
"diagnostics": false, | ||
"metrics": false // Good telemetry but eh.. | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,21 @@ | ||
#!/bin/bash | ||
if command -v apt-get >/dev/null 2>&1; then | ||
echo "Ubuntu Detected" | ||
sudo apt-get update | ||
sudo apt-get install clang libsqlite3-dev libssl-dev build-essentials rustup libclang-dev gcc-multilib libsqlite3-dev libclang-dev -y | ||
rustup toolchain install stable | ||
elif command -v pacman >/dev/null 2>&1; then | ||
echo "Arch Linux Detected" | ||
sudo pacman -Syu rustup clang sqlite openssl clang gcc-multilib --needed | ||
rustup toolchain install stable | ||
elif command -v apk >/dev/null 2>&1; then | ||
echo "Alpine Linux Detected" | ||
sudo apk update | ||
sudo apk add clang sqlite-dev openssl-dev build-base rustup curl libclang gcc-multilib | ||
rustup toolchain install stable | ||
else | ||
echo "Unsupported package manager" | ||
exit 1 | ||
fi | ||
|
||
echo "Installation complete!" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.