Getting Started
Installation
Usage
Basic Syntax
Data Types
Expressions
Variables
Conditions
Commands
Arrays
Loops
Functions
Importing
Advanced Syntax
As Cast
Builtins
Type Condition
Compiler Flags
Standard Library
Documentation
Array
Date
Environment
FileSystem
HTTP
Math
Text
Contributing
How to
Guide
Compiler structure
Amber by Example
ShellCheck tester
Ubuntu Updater
Bot Detector
LSP Installer
LSP installer
This script automates the installation of several Language Server Protocol (LSP) tools, primarily by downloading them from GitHub and installing them on your system. The latest version of the script (and also complete) can be found here.
The script uses standard library functions to simplify the process of downloading, unpacking, and installing various LSP tools. It checks for necessary permissions, downloads the latest releases of selected LSPs, moves them to system directories, makes them executable, and installs additional LSPs using
npm
,pip
, andgem
as needed.
For each tool, if the download or installation fails, an error message is displayed, and the script exits to prevent partial installations.
import { dir_exist, make_executable, create_symbolic_link } from "std/fs"
import { download } from "std/http"
import { is_root, exit } from "std/env"
import { contains } from "std/text"
if not is_root() {
echo "This script requires root permissions!"
exit(1)
}
fun get_download_path(repo, position) {
return unsafe $curl -sL "https://api.github.com/repos/{repo}/releases" | jq -r ".[0].assets.[{position}].browser_download_url"$
}
fun move_to_bin(download_url, binary) {
if silent download(download_url, binary) {
mv binary "/usr/local/bin" failed {
echo "Move {binary} to /usr/local/bin failed!"
exit(1)
}
make_executable("/usr/local/bin/{binary}")
} else {
echo "Download for {binary} at {download_url} failed"
exit(1)
}
}
fun download_to_bin(download_url, binary, packed_file) {
if silent download(download_url, packed_file) {
unsafe {
if contains("tar.gz", packed_file) {
$tar -zxvf "./{packed_file}" -C ./ > /dev/null 2>&1$
unsafe mv "./{binary}" "/usr/local/bin"
} else {
$gunzip -c - > "/usr/local/bin/{binary}"$
}
$rm "./{packed_file}"$
}
make_executable("/usr/local/bin/{binary}")
} else {
echo "Download for {binary} at {download_url} failed"
exit(1)
}
}
cd "/tmp"
echo "Install Typos LSP"
download_to_bin(get_download_path("tekumara/typos-lsp", 6), "typos-lsp", "typos.tar.gz")
echo "Install Rust LSP"
download_to_bin("https://github.com/rust-lang/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz", "rust-analyzer", "rust-analyzer-x86_64-unknown-linux-gnu.gz")
echo "Install Lua LSP"
if not dir_exist("/opt/lua-language-server") {
cd "/opt/"
unsafe $git clone https://github.com/LuaLS/lua-language-server$
} else {
cd "/opt/lua-language-server"
}
silent unsafe {
cd "lua-language-server"
$git pull$
$./make.sh$
}
create_symbolic_link("/opt/lua-language-server/bin/lua-language-server", "/usr/local/bin/lua-language-server")
cd "/tmp"
let npm_lsp = ["vscode-langservers-extracted", "@tailwindcss/language-server", "@olrtg/emmet-language-server", "intelephense", "bash-language-server"]
let npm_lsp_name = ["CSS, HTML, JSON LSP", "Tailwind LSP", "Emmet LSP", "Intelephense LSP", "Bash LSP"]
loop index, lsp in npm_lsp {
echo "Install {npm_lsp_name[index]}"
$npm i -g "{lsp}"$ failed {
echo "Error! Exit code: {status}"
}
}
Getting Started
Installation
Usage
Basic Syntax
Data Types
Expressions
Variables
Conditions
Commands
Arrays
Loops
Functions
Importing
Advanced Syntax
As Cast
Builtins
Type Condition
Compiler Flags
Standard Library
Documentation
Array
Date
Environment
FileSystem
HTTP
Math
Text
Contributing
How to
Guide
Compiler structure
Amber by Example
ShellCheck tester
Ubuntu Updater
Bot Detector
LSP Installer