Installation
One-line installer (recommended)
Section titled “One-line installer (recommended)”macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/almide/almide/main/tools/install.sh | shWindows (PowerShell):
irm https://raw.githubusercontent.com/almide/almide/main/tools/install.ps1 | iexBoth scripts auto-detect your platform, download a prebuilt binary from GitHub Releases, and verify SHA-256 checksums.
Self-update
Section titled “Self-update”Once installed, update Almide from itself:
almide self-update # update to latest releasealmide self-update v0.13.1 # pin to a specific versionFrom source
Section titled “From source”Almide is written in Rust. You need cargo installed.
git clone https://github.com/almide/almide.gitcd almidecargo build --releaseThe binary is at target/release/almide. Add it to your PATH:
# Add to ~/.zshrc or ~/.bashrcexport PATH="$PATH:/path/to/almide/target/release"Verify installation
Section titled “Verify installation”almide --versionEditor support
Section titled “Editor support”Almide files use the .almd extension. Syntax highlighting is available for:
- VS Code — search for “Almide” in the extension marketplace
- Tree-sitter — grammar available at almide/almide-grammar
Development setup
Section titled “Development setup”If you plan to contribute to Almide, install the git hooks:
brew install lefthook # or see https://github.com/evilmartians/lefthooklefthook install