📣 Wichtige Aktualisierung — der Zugang ändert sich am 1. Oktober 2026

Ab dem 1. Oktober 2026 um 12 Uhr mittags (UK-Zeit) wird für diesen Spiegel eine Authentifizierung benötigt, damit apt weiterhin funktioniert.
Das Herunterladen der Pakete bleibt kostenlos über die GitHub-Repositories, in denen sie gebaut werden.
Ein Jahresabonnement bietet Ihnen kostenlose sofortige Updates über apt und unterstützt das Projekt direkt. Vielen Dank! 🙏

🔑 Jahresabonnement erwerben

€15 / $15 / £15 pro Jahr — in US-Dollar, falls Ihre Währung nicht unterstützt wird.

💬 Fragen, Probleme oder sonstiges zu diesem Repository? Tritt unserer Discord-Community bei — der beste Ort für Hilfe und den Austausch mit anderen Nutzern.
Früher über Buy Me a Coffee unterstützt? Das ist wunderbar! Komm auf unseren Discord und wir sorgen für ein kostenloses lebenslanges Abonnement für dich. 💜

🇿 Neueste installieren ZLS auf Debian

Zig Language Server for IDE features and development productivity

Neueste Version: 0.15.1 · aktualisiert 2026-07-17
QuelleVersion
deb.griffo.io0.15.1 ✅
Offizielles Debian🚫 nicht paketiert
← Zurück zur Startseite

Was ist ZLS?

ZLS (Zig Language Server) is a Language Server Protocol-Implementierung für Zig written in Zig by the zigtools community. It provides developers with modern IDE features like autocomplete, goto definition, hover information, and semantic analysis in their favorite editors. With over 4k GitHub stars, it's the essential tool for productive Zig development.

🚀 Warum neueste Versionen wichtig sind: ZLS is rapidly evolving alongside Zig itself, with frequent releases containing new language feature support, performance improvements, and enhanced IDE capabilities. The latest versions include better semantic analysis, improved completions, and compatibility with Zig 0.16+.

⚡ Key Features of ZLS

💡 Smart Completions

Intelligent autocomplete for functions, variables, types, and imports. Context-aware suggestions based on current scope and available symbols.

🔍 Navigation Features

Goto definition/declaration, find references, and document symbols. Navigate large Zig codebases with ease and precision.

📝 Code Intelligence

Hover information, semantic token highlighting, and inlay hints. Understand code structure and types without manual lookup.

🛠️ Development Tools

Automatic formatting with zig fmt, code actions, selection ranges, and folding regions for better code organization.

🔄 Symbol Operations

Rename symbols across entire codebase, find all references, and document symbol outline for project navigation.

📦 Package Support

Custom package resolution, cImport support, and namespace handling for complex Zig projects and dependencies.

🎯 Supported Editors & IDEs

  • VS Code: Official Zig extension with ZLS integration
  • Neovim/Vim: Native LSP support and dedicated plugins
  • Emacs: lsp-mode and eglot compatibility
  • Sublime Text: LSP package integration
  • Kate/KDevelop: Built-in LSP support
  • Any LSP-compatible editor: Universal Language Server Protocol support
🚀 Immer aktueller als die offiziellen Archive: Debian und Ubuntu frieren Paketversionen mit jedem Release ein — dieses Repository veröffentlicht neue Upstream-Versionen in der Regel innerhalb weniger Stunden. Ein einfaches apt upgrade hält Sie immer auf der neuesten Version.

📦 Installation von deb.griffo.io

Schritt 1: Repository hinzufügen

sudo install -d -m 0755 /etc/apt/keyrings curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | sudo gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | sudo tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null sudo apt update
install -d -m 0755 /etc/apt/keyrings curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null apt update

Schritt 2: Installieren ZLS

# Neueste stabile Version installieren ZLS sudo apt install zls # Oder Nightly-Builds installieren for cutting-edge features sudo apt install zls-master # Installation überprüfen zls --version
# Neueste stabile Version installieren ZLS apt install zls # Oder Nightly-Builds installieren for cutting-edge features apt install zls-master # Installation überprüfen zls --version

🎯 Editor Setup Examples

VS Code setup:

# Install Zig extension from marketplace # Extension automatically detects ZLS if installed in PATH # Or configure custom ZLS path in settings.json: { "zig.zls.path": "/usr/bin/zls" }

Neovim setup (with nvim-lspconfig):

-- In your init.lua require('lspconfig').zls.setup{ cmd = { "zls" }, filetypes = { "zig" }, root_dir = require('lspconfig.util').root_pattern("build.zig", ".git"), }

Basic ZLS configuration:

# Create ZLS config file mkdir -p ~/.config/zls cat > ~/.config/zls/zls.json << 'EOF' { "enable_semantic_tokens": true, "enable_inlay_hints": true, "enable_snippets": true, "warn_style": true, "highlight_global_var_declarations": true } EOF

🚀 Warum deb.griffo.io wählen?

📊 Repository Comparison:
  • Official Debian: ZLS not available in official repositories
  • Manual Compilation: Requires Zig master and complex build process
  • Binary Downloads: Manual updates and no package management
  • deb.griffo.io: Latest version with automatic updates

📦 Paket-Build-Repository

Die Debian-Pakete werden automatisch in diesen GitHub-Repositories erstellt und gepflegt:

🔗 Verwandte Pakete

Auch verfügbar von deb.griffo.io:

🎯 Perfekt für: Zig developers who want modern IDE features, teams working on large Zig projects, anyone wanting autocomplete and navigation in their editor, and developers who appreciate productive development environments.

📦 Neueste Releases aus diesem Repository

❓ Häufig gestellte Fragen

Ist ZLS in den offiziellen Debian-Paketquellen?

Nein — ZLS ist nicht in den offiziellen Debian-Archiven paketiert. Dieses Repository ist derzeit die einzige apt-Quelle und liefert ZLS 0.15.1.

Wie installiere ich das neueste ZLS unter Debian?

Fügen Sie das deb.griffo.io-Repository einmalig hinzu (Anleitung oben) und führen Sie dann aus: sudo apt install zls. Neue Releases kommen über das normale sudo apt upgrade.

Sind die Pakete signiert und wie werden sie gebaut?

Jedes Paket ist mit dem GPG-Schlüssel des Repositories (EA0F721D231FDD3A0A17B9AC7808B4DD62C41256) signiert und wird aus Upstream-Releases in öffentlichen GitHub-Repositories gebaut, die jeder einsehen kann.

Welche Debian-Versionen werden unterstützt?

Debian 12 Bookworm, Debian 13 Trixie, Forky und Sid.