Manifest & Layout
18extension.toml and the directories beside it
idthe registry identifier — lowercase, hyphenated, stable forevernamethe display namedescriptionone line, shown in the extensions listversionsemver; must match the version in extensions.toml at the submitted commitschema_versionmanifest schema — 1 todayauthorsarray of Name <email>repositorypublic HTTPS URL — an SSH URL is rejected at publish time[grammars.<name>]repository + rev of a tree-sitter grammar[language_servers.<id>]name, languages, language[language_servers.<id>.language_ids]map Zed language names to LSP languageIds[context_servers.<id>]declare an MCP server[debug_adapters.<id>]declare a debug adapter, with a schema_pathsnippetsarray of paths to snippet JSON filesthemes/*.jsonno manifest entry — the directory is enoughicon_themes/*.json + icons/ditto, plus the SVG assetsCargo.tomlonly if the extension has Rustsrc/lib.rsthe Rust entry pointlanguages/<lang>/config.toml plus the tree-sitter queriesLanguage Configuration
16languages/<lang>/config.toml
namethe human-readable language name Zed uses everywhere elsegrammarwhich [grammars.*] entry parses itpath_suffixesfile extensions that select this languagefirst_line_patternregex against line 1 — shebangsline_commentsarray of prefixes, e.g. ["// "]block_commentthe delimiter pairbracketspairs with close and not_in scopesautoclose_beforecharacters after which a bracket may still auto-closeword_charactersnon-alphabetic characters that count as part of a wordcompletion_query_characterscharacters that keep a completion query goingtab_size / hard_tabsindent width; tabs or spacesincrease_indent_patternregex: indent the next linedecrease_indent_patternregex: outdent this linedecrease_indent_patternsalign with a named @start.<name> capturedebuggersordered list of adapters offered for this languagesemantic_token_rules.jsonmap LSP semantic token types to theme stylesTree-sitter Queries
11One .scm file per job, and the captures each one uses
highlights.scmsyntax highlightinginjections.scmembedded languagesbrackets.scmmatching pairsindents.scmautomatic indentationoutline.scmthe outline panel and symbol pickertextobjects.scmvim-mode text objects and ]m / [moverrides.scmsettings scoped to a syntax constructrunnables.scmthe run arrow in the gutterredactions.scmvalues hidden while screen sharing#set! / #eq? / #match?tree-sitter query predicatesdev: open syntax tree viewthe parse tree of the current buffer, liveThe Rust API
27zed_extension_api — the trait, the helpers and the types
zed::Extensionthe trait — every method has a default, so implement only what you needregister_extension!(T)the macro that exports the WASM entry pointsfn new() -> Selfconstruct the extension; the only required methodlanguage_server_commandreturn the Command that starts the serverlanguage_server_initialization_optionsthe initialize payloadlanguage_server_workspace_configurationthe workspace/configuration replylanguage_server_additional_initialization_optionscontributions for another serverlanguage_server_additional_workspace_configurationthe same, for workspace configuration*_schemaJSON schemas for the two blocks above — drives settings completionlabel_for_completion / label_for_symbolbuild a highlighted CodeLabelcontext_server_commandthe command that starts an MCP servercontext_server_configurationits settings schema and installation instructionsget_dap_binarylocate or download the debug adapterdap_request_kindlaunch or attach, for a given configdap_config_to_scenarioturn a generic debug config into an adapter scenariodap_locator_create_scenario / run_dap_locatorbuild a scenario from a task, and resolve itcurrent_platform() -> (Os, Architecture)the host platformdownload_file / make_file_executablefetch and chmod a release assetlatest_github_release / github_release_by_tag_namethe GitHub release helpersnpm_install_package / npm_package_latest_versionnpm helpersnode_binary_path()the Node runtime Zed managesprocess::Commandrun a processhttp_clientHTTP requests from an extensionsettings::*read the user’s settings for a language or serverWorktreeread_text_file, which, shell_env, root_pathKeyValueStoresmall persistent state for the extensionset_language_server_installation_statusthe "downloading…" text in the status barThemes & Icon Themes
13The JSON schemas
$schemahttps://zed.dev/schema/themes/v0.2.0.jsonname / author / themes[]a theme family holds one or more themesthemes[].name / .appearancethe theme name; light or darkstyle.background / .foreground / .accentthe three that set the whole tonestyle.editor.*background, gutter.background, line_number, active_line.background, wrap_guidestyle.element.* / border* / text*UI chrome, per state: hover, active, selected, disabledstyle.syntax.*one entry per highlight capture namestyle.terminal.ansi.*the sixteen ANSI colours for the integrated terminalexperimental.theme_overridesa setting, not a theme file — patch any key without forkingdirectory_icons / chevron_iconsicon theme: collapsed and expanded SVG pairsfile_stems / file_suffixesicon theme: map a name or extension to an icon keyfile_icons.<key>.pathicon theme: the SVG for a key; default is the fallbackCapabilities & Development
12The sandbox, the settings that govern it, and the dev loop
granted_extension_capabilitiesthe user-side allow list, in settings.json{ kind = "process:exec", command, args }run a process{ kind = "download_file", host, path }download a file{ kind = "npm:install", package }install an npm packageauto_install_extensionsinstall these automatically; {"html": true} by defaultauto_update_extensionsper-extension auto-update opt-outzed: extensionsthe extensions pagezed::InstallDevExtensionload an unpublished extension from a directoryzed --foregroundsee the extension’s println! output and INFO logszed: open logZed.log, where install and load failures landrustup target add wasm32-wasip2the compile targetWASI_SDK_PATHpoint at an existing wasi-sdk instead of Zed’s downloadPublishing
12The submission checklist, in order
extension.toml at the repo rootpublic repository, English UI text, an allowed licencezed-industries/extensionsthe registry repositorygit submodule add https://… extensions/<id>HTTPS, not SSH; the commit must be on a branchextensions.tomlsubmodule, version, optional pathpnpm sort-extensionskeeps extensions.toml and .gitmodules sortedgit submodule update --remote extensions/<id>then bump version in extensions.toml-theme, -icon-theme, -lsp, -debugger suffixesAPI Versions
10zed_extension_api against Zed
zed_extension_api = "0.7.0"the newest published crate version0.192.xzed_extension_api 0.0.1 – 0.6.00.186.x0.0.1 – 0.5.00.184.x0.0.1 – 0.4.00.178.x0.0.1 – 0.3.00.162.x0.0.1 – 0.2.00.149.x0.0.1 – 0.1.00.131.x0.0.1 – 0.0.6wasm_api_versionwhat the registry records per extension versionRegistry — Languages
259Language and grammar extensions, most-installed first
htmlHTML support.git-fireflyProvides Git Syntax HighlightingtomlTOML support.sqlSQL language support.vueVue support.scssSCSS and SASS supportcsharpC# support.xmlXML syntax support.makeMakefile syntax highlightingluaLua support.terraformTerraform support.logSyntax highlighting for log files.kotlinKotlin language support.svelteSvelte supportastroAstro support.latexLaTeX language server and syntax highlighting for Zed. See wiki on GitHub for help.zigZig support.prismaPrisma support.nixNix support.powershellPowerShell supportbiomeBiome support for ZedprotoProtocol Buffers support.graphqlGraphQL extension for ZedcsvCSV language support.iniSupport for ini and ini like files (ini, conf, cfg) and systemd unit files (automount, mount, path, scope, service, slice, socket, swap, target, timer)rainbow-csvHighlight CSV with different rainbow colors to make them more readablepython-requirementsSyntax highlighting for requirements.txt and constraints.txt filesneocmakeCMake grammar and lsp with neocmakelsptypstTypst support.env🔐 Environment support. ✰ and report issues ➩bladeLaravel Blade templating language support.nginxNginx supportodinOdin support.angularAngular Language supportfishFish language support for ZedansibleAnsible support for Zed. For the best experience, please find the recommended settings in the extension project's README.java-eclipse-jdtls☕️ Java language support for Zed with Eclipse JDTLSglslGLSL support.rR language support.justJustfile language supportgleamGleam support.helmSyntax highlighting for Helm templatesjuliaJulia support.commentComment language extension for highlighting special commentsocamlOCaml support.templTempl language support for ZednuNushell language support for ZedassemblyAssembly syntax highlighting and language serverjson5JSON5 language support for Zed using Joakker's Tree-sitter grammar.schemeScheme support.erlangErlang support.slintSlint support for Zedsolidity💠 Solidity language support for Zed. ✰ and report issues ➩asciidocSupport for AsciiDoc syntaxverilogVerilog and SystemVerilog supportgroovyGroovy (build.gradle) support.clojureClojure support.ssh-configProvides syntax highlighting for SSH config filescaddyfileCaddyfile support with syntax highlighting and Tree-sitter grammar.perlPerl supportmesonExtension for the Meson build system.luauLuau support.qmlQML support.liquidShopify Liquid supportjsonnetJsonnet language support for ZedtwigSyntax highlighting and Intellisense for Twig in ZedgosumSyntax highlighting for Go Checksum files.rstreST syntax support.elispElisp language support for ZednimNim supporthyprlangHyprlang language server and syntax highlightingvV language support.lessLESS language supportelmElm support.matlabMATLAB support for ZedfsharpF# language support for ZedtmuxSyntax highlighting for tmux configuration filesstarlarkStarlark supportcucumberZed Cucumber SupportwatLanguage support of WebAssembly Text FormatfortranFortran support for Zedtree-sitter-querySupport for tree-sitter query files (*.scm)dD language supportbeancountBeancount support.pklPkl language support for ZedracketRacket support.hamlHaml template supportgraphvizGraphviz support.crystalSyntax highlighting and LSP support for Crystal & ECRrescriptReScript support.rocRoc language support for ZedvhdlVHDL support.bicepBicep language support. Bicep is a Domain Specific Language (DSL) created by Microsoft for deploying Azure resources declaratively. This extension provides intellisense for the core language and extends to support type definitions for all resource types in Azure.pugPug syntax support for ZedpestPest parser language support for ZedcueCUE language support for ZedblueprintLanguage support for Blueprint (.blp) filesd2D2 support.haxeLanguage server and syntax highlighting support for the Haxe programming language.purescriptPureScript support.emberEmber.js/Glimmer.js support.firebase-security-rulesFirebase Security Rules language support.vcardvCard support.adaAda language support for Zed.teraTera support.prologtree-sitter-prolog integration for zedcobolCOBOL language server and syntax highlightingicaliCal support.cfmlCFML support.unisonUnison support for Zed. The friendly programming language from the future with the editor from the future.straceStrace log file support for ZedflatbuffersFlatBuffers support.lilypondLilyPond syntax highlighting in ZedmoveMove language support for the zed editor.amberAmber Language support.sorbetLSP support for Ruby + SorbetactionscriptActionScript langauge supportnaviNavi language support.ledgerSupport for ledger journal filescairoCairo language support for Zedhtml-jinjaHighlighting for HTML-Jinja templates.uiuaUiua support.yaraYara syntax highlighting for Zed.fountainA Zed extension adding Fountain supportrhaiSyntax highlighting for Rhai files.smlStandard ML language support for ZednoirNoir support.playdatePlaydate support for Zed.rclSupport for the RCL configuration language.stanStan language supportomnetppHighlight MSG and NED filesventoHighlighting for the Vento templating languagesagemathSageMath Support for Zedmove-aptosMove on Aptos language support for ZedcfengineSyntax highlighting support for CFEngine policy languageconlSyntax highlighting and LSP for CONLgrenSyntax highlighting for GrenvrlVRL extension for ZedopentofuOpenTofu support.github-actionsGitHub Actions LSP support for Zed.wgsl-weslSupports grammar for WGSL, WESL as well as best-effort support for Bevy (naga_oil) extensions and uses the wgsl-analyzer LSPlean4Lean 4 support.tclAn Extension providing TCL Language highlightingviewtreeLanguage Server Protocol (LSP) implementation for .view.tree files used in the $mol web framework.leptosSupport for Leptos RSTML in ZedmoonbitMoonBit language support for Zed Editor with Tree-sitter syntax highlighting and native LSP integration.cqlCQL support.logstashLogstash pipeline config file syntax highlighting supporttermuxtermux-language-server supportagdaAgda support.statamic-antlersSyntax highlighting and IntelliSense for Statamic Antlers in ZedkclZed editor extension for KCL lang.edgeEdge template language support with syntax highlighting and language server integrationthriftThrift Support.turtleRDF Turtle formatmotokoMotoko and Candid support. Visit the repository for more information.xdr-naiveSyntax Highlight for XDRassASS/SSA Syntax Highlighting.redscriptREDscript is an open-source programming language and toolset designed to work natively with Cyberpunk 2077's scripting runtime.webidlWebIDL supportclarityClarity language supportkotoSupport for Koto in ZedelleElle support.tactTact language support. Needs Tact Standard Library: npm install @tact-lang/compilerrisorRisor language extensionsieveLanguage support for Sieve email filtering language (RFC 5228) with Proton advanced featuresgcodeG-code support.jsonlJSON Lines (JSONL) syntax highlighting support for ZedtypespecTypespec support.mdxMDX supportdjangoDjango supporthoconHOCON (Human-Optimized Config Object Notation) language supportmustacheMustache syntax highlighting support for Zed.nunjucksNunjucks supporttxtarLanguage support for txtar filesgritGritQL language supportcircomUnofficial Circom Lang support for ZedtodotxtTodo.txt support.ionAmazon Ion and Ion Schema Language support.bamlBAML v0 — Zed extensionyangThis extension provides syntax highlighting and LSP support for YANG language in Zed editor.jqjq language support for ZedauthzedLanguage support for Authzed SpicedbjspJSP support.wxmlWXML (WeiXin Markup Language) support for Zed.editorconfigEditorconfig language support for Zed.objectscriptInterSystems IRIS ObjectScript ExtensionslangSlang shading language supportsystemrdlSupport for the SystemRDL languageyarn-spinnerYarn Spinner language support for ZedinkInk language support for ZedquadletSupport for Podman Quadlet files with quadlet-lspzwirnA language extension for the live coding language zwirnwrenSyntax higlighting support for WrengotmplGo template support, includes text/template (gotmpl) and html/template (gohtml).desktopSyntax highlighting for .desktop and .directory filespascalPascal language support.openfgaSyntax highlighting for OpenFGA authorization model filesucodeucode (https://ucode.mein.io/) scripting language support (primarily used in OpenWrt/OpenWifi)jdlSyntax highlighting support for Jhipster Domain LanguagetextprotoSupport for Protocol Buffers text format (.textproto, .txtpb, .textpb, .pbtxt)tqlZed extension for the Tenzir Query Language (TQL).apache-avroApache Avro support for the IDL LanguagershtmlRsHtml Template Language SupportghosttyGhostty configuration file supportrotoSyntax highlighting for RotobslBsl (1C) supportjaiJai language support. For LSP support see repository docs.codeownersSyntax highlighting and language support for GitHub CODEOWNERS filesdefoldDefold game engine support with bundled API docs, Lua language server, and code snippetsasn1ASN.1 Syntax Highlighting (SNMP MIB files)mcfunctionMcfunction support for ZedlatteLatte templating language support for Zedwow-tocSyntax for .toc WoW addon manifestsoatOat language syntax highlightingpbxprojXcode project and strings syntax highlightingsomaSyntax highlighting and LSP support for the Soma programming language.structured-textStructured Text Zed extensionarktsLanguage support for ArkTS (Harmony ETS) files in Zedbluespec-systemverilogBluespec SystemVerilog (BSV) language supporttoonTOON support.quartoQuarto support for ZedhqlHQL syntax highlightercherriA Zed extension that adds basic support for the Apple Shortcut programming language Cherri.numscriptSupport for NumscriptregeditWindows Registry language supportcoffeescriptCoffeescript language serverwikitextWikitext language support.cds-lspCDS LSP for ZeddemotapeSyntax highlighting for Demo Tape terminal recording scriptsnetlinxNetLinx support for ZednomadNomad Language Serversquirrel🐿️ Squirrel language supportponyPony language support with syntax highlighting and LSP integrationlinkerscriptLinker Script syntax highlightingzokratesZoKrates language support for Zedcsoundtree-sitter-csound grammarferretFerret language support for ZedprocessingProcessing language support by the Processing language server (requires Processing 4.4.6 or later).redRed support.bisonBison/Yacc Language supportumkaZed Extension for umkaduperDuper support for Zed.verylVeryl extension for Zedllvm-irLLVM IR language support for ZedhuffHuff language support for Zed - a low-level EVM assembly languagemicroscriptmicroScript language support for Zed editortamarinSyntax highlighting for Tamarin.logcatSyntax highlighting for Android logcat files.smalispSmali language support for zedosoSupport for Oso policies written in Polar.freemarkerFull-featured Freemarker Template Language support for Zed editor with tree-sitter-based syntax highlightingcoiLanguage support for Coi - a component-based language for high-performance web applicationsstyxStyx configuration language support with syntax highlighting and LSPswaySway smart contract language support with LSP integrationdangDang language support for Zedhp42sHP-42S keystroke programming language supportobjective-cSupport for Objective-CarduinoArduino language support with syntax highlighting and arduino-language-server integration.Registry — Language Servers
84Extensions that add a language server without adding a language
emmetEmmet supportcodebook📒 A fast, code aware spell checker.markdown-oxideObsidian-Inspired PKM Language Server for ZedruffSupport for Ruff, the Python linter and formatterlive-serverLaunch a development local Server with live reload featurebasherBash-language-server supportoxcOxlint and Oxfmt supportgolangci-lintgolangci-lint support.discord-presencePresence for your beautiful discord account :)denoDeno support.wakatimeWakatime support.tsgoTypeScript v7's native compiler and language server.snippetsSupport for language-agnostic snippets, provided by simple-completion-language-servermarksmanMarksman support for Markdown files.tombi🦅 TOML Language Server 🦅color-highlightHighlight colors in your editor based on color-lsp.basedpyrightPython type checking and language server support from BasedPyright.harperFast, offline, grammar & spelling checker using the privacy-first Harper language server by AutomatticcspellCSpell Language Server for Zed editortyposLow false-positive source code spell checker.stylelintStylelint support via the official vscode-stylelint language servermarkdownlintLSP support for `markdownlint`autocorrectAutoCorrect is a linter and formatter to help you to spellcheck typos, correct spaces, words, and punctuations between CJK.gitlab-ci-lsLanguage Server for gitlab-ciunocssUnoCSS supportltexLTEX+ Language Server support for Zed editorcargo-appraiserLSP for Cargo.toml. You need to enable zed's inlay_hints.postgres-language-serverPostgres Language Servercode-statsTracks coding XP with Code::Stats.iweMarkdown files graph navigation and transformationstimulusStimulus LSP support.vacuumSupport for Vacuum, the worlds fastest OpenAPI 3, OpenAPI 2 / Swagger linter and quality analysis toolactivitywatchActivityWatch watcher supportrelayRelay support for ZedpsalmZed extension for Psalm, a static analysis tool for PHPnorminetteNorminette for 42 SchoolpyreflySupport for the Pyrefly static type checker for Python in ZedphpcsPHP CodeSniffer Language Server for linting, formatting, and auto-fixing PHP code via PHPCS and PHPCBF.package-swift-lspLanguage Server Protocol (LSP) implementation for Swift Package Manager's Package.swift manifest files.tyAn extremely fast Python type checker and language server, written in Rust.css-modules-kitThe Zed extension for CSS Modules Kitcrates-lspLanguage Server implementation targeted specifically towards the Cargo.toml file of Rust projects, providing auto-completion for crate versions and in-editor hints when the selected crate versions are out of date.texpressoLive preview of LaTeX document using TeXpresso. Use alongside the LaTeX extension.design-tokensLanguage server for DTCG design tokens with hover docs, completions, diagnostics, and code actions for CSS, HTML, JavaScript, TypeScript, JSON, and YAML filesairAir extension for Zedast-grepast-grep LSP support in Zed. Get warnings and errors directly in your editor.deputyAutocomplete, hover info, and more for your dependenciesjj-lspLSP to resolve conflicts in the jj-vcsshader-lsShader validation, diagnostics and language features for HLSL, GLSL and WGSL, powered by shader-language-server (antaalt/shader-sense).phpmdPHP Mess Detector Language Server for linting PHP code. We are looking for feedback, especially for Windows and Linux platforms.ts-macroTS Macro support for ZedodooThis extension integrates the Odoo Language Server, that will help you in the development of your Odoo projects.cliceC++ supportzubanLanguage Server for ZubanLSdependiRenamed to Depsy. Install the 'depsy' extension instead; this one receives no further updates.rumdlFast Markdown linter and formatter written in RustdprintDprint support for Zedpytest-language-serverA blazingly fast Language Server Protocol implementation for pytestctagsAdd Universal Ctags support to the Zed editorzabbyTabby Integration for Zed. Go to the GitHub repo for documentation and setup.flowFlow language support.tflintSupport for TFLintemoji-completionsAdds the ability to complete emojis by typing ':' followed by the emoji name.npm-package-json-checker📥 Highlights outdated npm packages and shows changelogs in package.json. Changelogs from GitHub releases and/or CHANGELOG.md. Shown minimalistically without UI bloat.css-variablesProject-wide CSS variable autocomplete, hover, go-to-definition and color support via css-variable-lsp.jarlJarl extension for ZedlaravelLaravel (Community Edition) support for Zed — go-to-definition, hover & find-references for Blade, Livewire, Flux, views, routes, and config. Community-maintained, not affiliated with Laravel LLC. 📖 See the README for setup & configuration; custom PHP/Blade language servers need a one-line settings tweak.wc-language-serverLanguage server extension providing diagnostics, completion, and validation for Web Components and custom elementsbookmarkBookmarkodoo-lspLanguage server for Odoo Python/XML/JShackatimeWakatime extension fork to improve hackatime support.auto-file-headerAutomatically inserts file headers when creating new files. Zero dependencies - downloads pre-built binaries automatically. Needs .auto-header.toml config.intl-lensInternationalization (i18n) support for Zed - inline translations, hover info, and diagnosticsmplsZed extension for Markdown Preview Language ServerpathySidecar LSP server for Python path completions.deps-language-serverIntelligent dependency insights across package ecosystemssemgrepSemgrep language server integration for Zedshapelsshape inference for torch inside zedtex-japanese-formatterTeX Japanese Formatternu-lintLinter for the innovative Nu shellsqlmeshSQLMesh and SQL model support. Enables types, go to definition and hover on models.ellspEmacs Lisp languages support for Zed.hexpeekHexPeek, peek various forms of an number literalfortitudeSupport for the fortitude linter for Fortran in ZedRegistry — Themes
375Themes, most-installed first
catppuccin🦀 Soothing pastel theme for Zedmacos-classicA macOS native style theme, let it same like native app in macOS.tokyo-nightTokyo Night Themesone-dark-proA port of VSCode One Dark Pro with some tweaksnvim-nightfox🦊 A port of the Neovim Nightfox themes. Includes all variants as opaque and blurred version.github-themeGitHub themes for ZeddraculaOfficial Dracula theme for Zedvscode-dark-modernVSCode Dark Modern Theme for ZedsnazzyA port of the popular Snazzy color scheme for the Zed editor.catppuccin-blurCatppuccin themes with blurthe-dark-sideJoin the dark side.jetbrains-themesLight, Dark, Islands Light and Islands Dark JetBrains themesnordNord color schemes for Zed. Includes light and dark variants.github-dark-defaultA modified port of the GitHub VSCode themematerial-darkTheme that imitates Google's Material Dark theme.fleet-themes🚢 Transform Zed with Fleet's sleek, modern aesthetic for a sublime coding experience.rose-pine-themeAll natural pine, faux fur, and a bit of soho vibes – a classy minimalist theme for Zed.new-darcula🔮 Clean and minimal take on the JetBrains Darcula theme. INCLUDES dark, darker, and light variants.zedokaia theme for Zed based on the Monokai Pro color schemesmoothAesthetically pleasing dark and light theme with soft pastel colors aiming to be very easy on the eyes.everforest🌲 Everforest color scheme for Zed. Theme comes in regular, material, and blur variants.ultimate-dark-neoA muted and pleasant dark theme for Zed with some italics to distinguish certain parts of the syntax. Designed for use with the programming font Victor Mono.tailwind-themeTailwind theme for ZedcolorizerColorizer is a vibrant Zed code editor theme that enhances readability with rich, contrasting colors, making your coding experience both efficient and enjoyable.kanagawa-themes🌊 Zed port of rebelot's Kanagawa.nvim theme 🐉blade-runner-2049📺 A cyberpunk aesthetic theme based on the command line interface of Blade Runner 2049, inspired by the film's dystopian and high-tech visual styleserendipityRelaxed, gentle and modern | Serendipity theme for Zedxy-zed🐈⬛ A sleek and sophisticated dark theme with vibrant, intelligent syntax highlighting. Please report issues ➩vercel-theme▲ Vercel light and dark theme, like in Vercel's docs.0x96fA simple and pleasant dark theme for Zednight-owlzA port to Zed of the famous Night Owl theme for VSCode by Sarah Drasnermodest-darkA modest zed theme based on one dark but with brighter colours on a darker backgroundktrz-monokaiKTRZ Monokai Theme for Zedone-dark-darkenedA darkened variant with enhanced contrast of One Dark theme for Zed.nightfoxNightfox themes for Zedmodus-themesA complete set of accessible themes for Zed editor. These themes provide high contrast and color-blind friendly color combinations, ensuring readability and comfort for all users.solarized☯️ Precision colors for machines and peoplegentle-darkA dark theme inspired by Gentle Dark UI for the Atom editorblackfox🦊 Theme for Zed inspired by Intellij Ideagithub-copilot-themeIDE theme from Github Copilot's Website, it's dark and high contrastbase16Chris Kempson's base16 Themesone-dark-pro-maxOne Dark Pro Max/Glass theme for Zed :)gruvbox-materialGruvbox Material theme for Zed editoribm-5151📺 A theme faithfully based on the IBM 5151 green phosphor screen, recreating the authentic monochrome terminal experiencesublime-mariana-themeTheme for Zed Editor that imitates Sublime Text 4's Mariana colour scheme.monosamiMonosami | black and white monochrome theme for Zed EditormelangeA warm and cozy theme for Zed with dark and light variantstomorrow-themeTheme Based on chriskempson's Tomorrow Theme, VS Code's Tomorrow Night Blue, and mdBook's Coal Themeflexoki-themesAn inky color scheme for prose and code.synthwaveA port of the Synthwave '84 extension in VS Codeayu-darkerAn opinionated darker variant of the Ayu Dark theme.zedwaitaLight and dark Adwaita theme for Zed.monokai-reversedZed port of Bearded Monokai Reversedquiet-light-themeVSCode's Quiet Light theme for Zedoceanic-nextMinimalist theme, a port of the popular Oceanic Next with slight changes.one-dark-flatA port of VSCode One Dark Flatvscode-light-plusPort of the VSCode Light+ theme to Zedspiceflow-themeSpiceflow themes for Zedneovim-defaultA port of the default Neovim themeshalcyon🌊 A minimal, dark blue theme for Zedzed-legacy-themesSome of the legacy themes Zed shipped with initially: Andromeda, Atelier, Rosé Pine, Sandcastle, Solarized, Summercampgruber-darkerA port of the Gruber Darker theme for emacsmoonlightMoonlight theme for Zedsiri🐶 A couple of dark themes based on One Dark and Visual Studio Code dark theme. Also a light theme for bright light coding.visual-assist-darkVisual Assist Dark Themepanda-themePanda Syntax theme for Zedone-black-themeOne Dark got even dar..kiernordic-themeNordic theme for Zedmonospace-themeIDX Monospace theme for zedalabasterAlabaster color scheme (port of https://github.com/tonsky/sublime-scheme-alabaster)srceryDark theme based on the Srcery color schemevscode-dark-polishedPolished and comprehensive VSCode Dark Modern theme for Zed.darcula-darkA darker theme for Zed based on the Darcula theme from Jetbrains IDEshex-light-themeTheme with syntax highlighting for Ayu, Latte and Solarizedmsun-darkMinimalist dark themesvitesse-theme-refinedVitesse Theme that better fits Zedgleam-themeTheme inspired by gleam.runmauMau Zed themeunoflatUno Flat is a minimal Zed theme based on Atom's One Dark.rich-vesperModified peppermint and orange flavored dark theme.dune-themeHarmonic and flow inducing color schemes which are gentle for your eyescyan-light-themePort of the Cyan Light Theme from the JetBrains Marketplacezen-abyssalA theme you'll probably like for zed.monolithA clean dark themenapalmA minimalistic dark theme, mix of GitHub Dark UI theme and VSCode Dark+ theme syntax highlighting.monokai-vibrant-ampedA version of Monokai Vibrant Amped, but for Zed!nstlgy-darkElegant dark theme with vibrant syntax highlighting inspired by the code playground theme made by Josh W Comeau at joshwcomeau.commariana-themeSublime 4's Mariana Theme for Zedjellybeans-vimZed port of nanotech's jellybeans.vim theme 🫘denix🐧 DeniX theme for Zed editorgruber-flavors15 flavors of a theme for recreational programmers.flat-themeMinimal, easy on the eyes theme inspired by flatwhite syntax from Atomnordic-nvim-themePort of AlexvZyl/nordic.nvim theme to zedslateA clean light and dark theme.sequoiaBlack, elegant, modern theme for Zed — Moonlight, Monochrome, and Retro in dark and light.yue-themeTheme based off the moonscript.org code examplescodesandbox-themeAn unofficial CodeSandbox theme for Zeds-dark-themeA premium, clean, and easy-on-the-eyes dark theme.snowfall❄️ Winter theme for Zedaquarium-themeA colorful, dark, cozy Zed port of the Aquarium theme.hami-melon-theme🍈 Organic green and orange flavored editor themev0-themeTheme used in v0 chat ported for zedember-themeEmber Colorscheme port for Zedblankeos-zenA bluer, minimal, dark, and frameless theme for Zed. Based on poimandres.nebula-pulseNebula Themes for Zednot-material-themePastel material themes in various coloursparaisoParaíso theme adapted from the TextMate theme of the same name originally created by Jan T. Sottaylin-themeA port of a port of Aylin: a modern and minimal dark theme with bright colors for ZedaxolosinAn Axolotl-inspired theme for ZedbatmanThe Batman theme for Zedperfect-duskBeautiful and accessible dark theme for your favorite code editorseverance-themeA theme for the Zed text editor based on the computer interface from the tv show Severance.outrunA cute cyberpunk/retro outrun inspired themepolar-themeA port of polar, a pure white light theme based from nord colors.the-best-themeA port of VSCode The Best Theme with some tweaksbluloco-themeBluloco theme for Zed editorbarbenheimerA theme inspired by the Internet phenomenon of the same name. It combines the pink and playful aesthetics of Barbie with the dark and dramatic tones of Oppenheimer.chai-themeChai Theme for Zedlusch-themeA dark colorful theme for zed based off the colors used in the Discord UIoolongDeep green theme for Zedshort-giraffe-themeA dark theme with carefully picked colorseiffel-themeA port of the Eiffel Textmate theme.ezio-themeThe Ezio theme for Zed.cisco-themeA very simple theme for Zed.lydiaA dark color scheme built around cool blue-grays and vibrant accents.tsarMinimal and modern semi-transparent dark theme, in desaturated silver and the original saturated palette.railscastA colorscheme based on the TextMate theme.martianizedA dark color scheme with a focus on reds, browns, and icy whites.aystraTheme for Zed. Based on 'One Dark Pro' and 'Jane Two' themes.nyxvamp-themetheme inspired by transfem emo aesthetics - special for cat girls 💜😺kansoA dark theme that invites focus, not attention. An elegant evolution of the original Kanagawa theme.yakaA light theme for the Zed EditorblancheNon official port of VS Code Blanche themehivacruz-themeA dark blue theme.gruvbox-crisp-themesCustom Gruvbox themes for Zed Editor with crisp high contrast variantsmonokai-nebulaA deep and vivid Monokai-inspired theme for the Zed editorgithub-classicThe classic GitHub Light and GitHub Dark themes for Zedrust-rover-dark-themeA dark theme inspired by RustRover's default dark themealabaster-darkDark version of Alabaster themesupergreatmonokaiGreat Zed theme based off sublime text's monokai mixed with VSCode's monokai.shades-of-purple-themeShades of purple theme for Zedandromeda🌒 A popular VScode theme brought to Zedcursor📺 A theme that recreates the Cursor IDE experience within Zed, bringing familiar styling and interface elements from the popular AI-powered code editorzedokai-darkest-machineA theme for Zed, based on Zedokai Filter Machinedark-pop-uiMidnight hues with a neon twist — a dark theme that keeps your code stylish and your eyes happy.jetbrains-riderLight and Dark JetBrains Rider themesdarker-horizonDarker Horizon Themenixdorf-8870📺 A theme faithfully based on the Nixdorf 8870 amber phosphor screen, recreating the authentic monochrome terminal experienceclaude-code-inspired-darkA dark theme for Zed inspired by Claude and Anthropic's brand colors with semi-transparent backgrounds.tomorrow-min-themeFork of [Tomorrow Theme](https://github.com/biaqat/tomorrow-theme-zed) with less highlights.blackrain-themeA dark theme for Zed inspired by Sublime Text's Black Rain thememaple-themeA colorful Zed theme, support light or dark mode, with medium brightness and low saturation.everforest-themeEverforest is a green based color scheme; it's designed to be warm and soft in order to protect developers' eyes.synthwave-alpha-themeA Synthwave inspired dark themegithub-plus-theme🐙 Inspired by GitHub colors. Light and dark variants for a clear and coherent look.monokai-ogA faithful recreation of the original Monokai themeoscuraAn unapologetically dark and minimal colorscheme for Zed. Inspired by the Oscura Theme by Fey.dark-discordA theme for Zed inspired by Discord's new theme.haku-dark-themeA soothing dark theme. An editor full off soot, made into a high class place.zedburnZenburn port to Zed EditorninjaA sleek, modern twist to a collection of minimalistic, high-contrast themes - optimized for readability, and efficient performance.emerald-nightThis theme is perfect for those who want a sleek and professional look for their editor.rainbowRainbow theme for Zedgruvbox-babyA port of the popular Gruvbox Baby theme with warm, earthy colorsneon-pulse-themeColorful theme for Zed editorsonokaiSonokai Color Scheme for Zedcrimson-themeA theme inspired by the t3.chat redesign colour scheme.supaglassSupaGlass is a theme for Zed text editor.anysphere-themeUnofficial Anysphere theme based on the theme from Cursor editor.mnemonic💎 Vibrant and purposeful theme familynight-shiftA clean desatured zed themechaos-theory-themeZed Theme with Chaos-Theory colour paletteyugenYūgen (幽玄) – A profound awareness of the universe that triggers feelings too deep and mysterious for words.flow-themeFlow Theme for Zedt3-themeUnofficial t3 theme based on T3 Chat for Zed editor.noir-and-blanc-themeMinimal black and white themes for Zedneo-brutalismA raw, high-contrast neo-brutalist theme for the Zed editor.sumi-lightMonochrome theme based on Sumi-e originating from Github light mode syntax highlighting.marbleMarble theme, an amazing looking theme with blue, red green and orange, all while being pleasant to the eyesbeanseeds-proBeanseeds Pro is a refined adaptation of the classic Jellybeans theme, specifically designed for the Zed editorbamboo-themeWarm green theme for Zedanthracite-themeAnthracite theme for Zed Editor.neutral-themeClean, minimal, neutral color palette.nightfox-mMladen's custom themesarctic-depthA sleek, high-contrast dark blue theme for ZedumbralkaiA dark theme with perceptually uniform syntax colors. Inspired by Monokai and Penumbra.day-shiftA soft theme with light colors for zedazutiku-themeA dark theme for Zed with a gentle, soft palette that's easy on the eyes.codestackrA port of the popular codeSTACKr VS Code theme for Zed Editorgrimaces-birthdayTheme to help you celebrate Grimace's Birthday.gafelsonA sleek, focused dark theme for Zedmolten-themeA red-orange-dark theme for your editor. Derived from Ayu Dark.spai-zero-theme3 premium dark themes with vibrant accents: Space Gray, Midnight Blue & Deep Green variantsdarkmatter-themeDarkmatter theme based on Base16 Black Metal BathoryadwaitaA GNOME Adwaita styled theme for Zed with syntax highlighting based on the gtksourceview Adwaita styleir-blackIR Black themetomorrow-night-burns-themeThe sleek Tomorrow Night Burns theme from iTerm2 and Ghostty, for Zedretrofit-themeA carefully crafted Zed theme with muted accent colors optimized for readability on dark backgrounds.dogiA minimalist flat theme with pure black and white backgrounds, vibrant syntax colors, and consistent medium font weights. Features both dark and light variants.dramDram is a lush green and blue color scheme for Zed utilizing the color palette from the science fantasy roguelike epic Caves of Qud. It is evocative of the venerable Solarized Dark by Ethan Schoonover.forest-nightForest Night is a green based color scheme; it's designed to be warm and soft in order to protect developers' eyessynthwave84A vibrant, retro-inspired theme based on the synthwave aesthetic of the 1980s. Includes Classic, Soft, and High Contrast variants.seoul256A port of the seoul256 color schemenoctis-portA Noctis theme for Zedevolved-themeevol's personal color theme based on the colors on evolved.systems.tron-legacyA port of the Tron Legacy theme for Zedblinds-themeAesthetically pleasing minimal dark theme with colourblind support for Zed.matte-blackA low-distraction dark theme for Zed.zero-trust-themeA clean and secure theme for Zed featuring light and dark variants with excellent readability and professional color schemesvue-themeA port of Vue Theme from VSCodecodely-themeA Codely-inspirared theme for Zedhot-dog-standHot Dog Stand theme for ZedpapercolorThe original PaperColor Theme, inspired by Google Material Design, ported to Zed.tm-twilightA direct port of TextMate Twilight themeoldbook-themeA colorscheme inspired by the feel of aged books. Minimal, soft, and readable.autumnal-marscapeFeel immersed in the Martian landscape with this festive pink and orange dark Zed themerosevin🍷 Tipsy warm theme for Zed, inspired by PinkCatBookiro📺 A theme that recreates the Kiro IDE experience within Zed, bringing familiar styling and interface elements from the popular AI-powered code editorelderberry🫐 A dark purplish color scheme for Zedmissing-themeTheme derived from Missing.css Prism themetokyo-maple-themeA collection of refined dark themes for VSCode and Zed, featuring Tokyo Maple, One Dark Maple, and Cursor Dark Maple with enhanced readability and Maple-style syntax highlighting.zoegi-themeA port of Moegi theme for Zed. Light and dark variants.taiga-themeA theme for Zed - with light and dark modesjetbrains-darcula-theme-by-bronya0Darcula theme from Jetbrains IDE, Like IDEA/Goland/Pycharm,My favorite theme, and you?zenDesigned for clarity and focus.dark-material-draculaA dark theme combining Material and Dracula colors.carbonfoxZed implementation of EdenEasts carbonfox Themeneon-comfy-soft-themesA Comfy & Soft Dark theme with neon Violet, Pink and Vaporwave syntax colors.lights-outLights out theme for Zedlonely-planetTheme for Zed inspired by the vscode-chester-atom theme.fedaykin-themesDark Dune-inspired themes for Zed - industrial monochrome and warm desert palettes1984-theme1984 theme for ZedapisartisanA simple and pleasant dark theme for Zeddarcula-dark-okkanoA dark theme inspired by IntelliJ IDEA's Darcula themevynoraa theme for Zed based on the Monokai color schemeone-dark-pro-enhancedThe most installed theme in Visual Studio Code modified for ZedsitruunaA fresh lemon inspired colorschemekvs-cyberpunk-2077Inspired by VS Code 2077 themepopping-and-lockingAn attempted port of the Popping and Locking Theme from iTerm,atom, and vscodefleuryA warm, rusty theme with bronze and copper tones inspired by weathered metalmaybe-material🩷 Curated vibrant and harmonious themes in various colors, schemes and contrast options.gruvchadGruvchad theme from NvChad.mint-themeMint theme for zed IDEsubliminal-nightfallDark Subliminal-based theme with Rosé Pine-inspired accents for Rust, TypeScript, Go, Swift, and Python.eyecandyThis theme is beauty, taste and old money.horizon-extendedBrining over the mildly popular Horizon Extended theme from VSCode and Neovimfleeting-themeFleeting ThemesvagueA cool, dark, low contrast colorscheme for Zed. Pastel yet vivid, like a fleeting memory...0xtzA top-tier theme for Zed text editor, meticulously crafted by 0xtz and an AI assistant, inspired by the Andromeda VS Code theme.gruvbox-material-mixGruvbox Material Port for Zed with more weights and styles.lotus-theme🌸 A minimal zen theme for ZedyamuraBeautiful theme for Zed with great eye-soothing colorsaesthetic-themeA soft, eye-comforting bluish dark theme for Zed. made with love 💝monokai-pro-ceMonokai Pro Community Edition for Zedsunset-driveA Synthwave dark theme with neon colors.naysayer-themeA color theme for Zed inspired by Jonathan Blow's compiler livestreams.dreamA soft theme featuring warm beige and browns.electron-vue-themeMy cool extensionquasi-monochromeA monochromatic/high contrast theme for Zed inspired by the quasi-monochrome theme from EmacsbubblegumA low-contrast dark theme with pastel colors.min-theme-plusThe ported VSCode theme is based on Min Theme and One Dark Pro for Zed.theme-linceLince theme, black or whitelooped-themesLooped Automation's themes for Zedsl4y-themeA vomit like high contrast theme for Zedpenumbra-plusZed port of Helix penumbra+plato-themesSet of themes with purposeful syntax highlightingvim-themeA port of the bundled Vim color schemeschocolateChocolate theme for Zed 🍫modern-vesperModified peppermint and orange flavored dark theme.arc-dark-themeArc Dark theme for Zed based on the popular Arc Dark color schemeayu-themes-glassZed's Ayu themes, but with a touch of frosted glassadaptifyA beautiful, adaptive theme for your Zed editornightingaleNight theme with comfortable warm contrastvalta nice themeflat-themesFlat dark theme for Zed - Clean, minimalist design with consistent colorsghost-in-the-shell-themeA cyberpunk-inspired theme based on Ghost in the Shell, featuring neon greens, deep cyans, and dark backgroundsamp-themeA theme for Zed based on the colors and design of Amp Code.airaA calm green theme for Zed, crafted to enhance focus and visual comfort.dracula-flatDracula theme (flat version) for Zedaquaflow-themeA calm, ocean-inspired greenish theme for Zed. Soft gradients and highly readable colors.your-name-themeThis theme is inspired to Your Name. anime film. Thanks!zedboxA native Zed port of Gruvbox and Gruvbox Material theme with thoughtful improvements.panda-plus-themePanda themes with extra contrast for Zedtokyo-night-darkA contrast modification of the Tokyo Night themecomplineA color palette for Deep contemplation and workcyberpunk-scarletA cyberpunk-inspired theme with scarlet red accents, based on the Cyberpunk Scarlet Protocol iTerm2 color scheme. Includes dark and light variants.orngA set of Cloudflare themes for Zed, with just the right amount of orange. Includes both dark & light mode themes and is designed for readability first.everforest-blurredEverforest Dark Medium with blurred backgrounds and high contrast.hipster-green-themeAn exact port of Tabby/iTerm2's Hipster Green color scheme - a vibrant terminal-inspired theme with classic green-on-black aesthetic and modern syntax highlightingpandoraPandora theme for Zedgruvbox-material-neovimGruvbox Material port from f4z3r's gruvbox-material.nvim palette. Their work can be found at https://github.com/f4z3r/gruvbox-material.nvim/tree/masterpigs-in-spaceA dark color theme designed to be easy on the eyes. Inspired by Solarized with a pastel twist.monokai-sharpMonokai Sharp themethorn-themeA dark and light minimal green theme for Zed, ported from thorn.nvim by jpwoldev-magicA darker magical theme for Zed Code Editorvscode-light-modernA port of Visual Studio Code's Light Modern theme for Zedalpental-themeMinimal typography-focused theme for Zed editor.charcoal-themeA sleek, dark theme for those who always keep their screen brightness very lowgodot-themeA theme inspired by the Godot editor and GDScript highlightingmatte-black-themeFind your Zen in Zed. a meticulously crafted, dark matte black theme that marries minimalist aesthetics with carefully tuned syntax colors. Created for discerning developers who seek a distraction-free, high-performance coding environment.blank-themeAn Elegant and Minimalist Theme for Zed.dwpA minimal theme designed with perfection (dwp)the-pure-toneThe pure tone theme for zedone-dark-oceanA dark theme with vivid colors based on One DarkfozzyDark carbon theme with warm earthy syntax colors, optimized using CAM16-UCS perceptual color sciencesweet-draculaA cheerful dark blue theme with vibrant, contrasting syntax highlighting.kaimandresThe official Zed port for Kaimandres.nvim.findrakecil-alabasterLight and Dark theme ported from https://github.com/tonsky/sublime-scheme-alabastercodebabel-ztheme-darkDescription: 🎡 codebabel ztheme dark and mirage themes.warm-lightWarm Light theme for the Zed code editor.carbonemberA dark theme inspired by EdenEasts Nightfox, Carbonfox variant, nvim theme and Material Theme for syntax inspired colorsbearded-themeThe theme with a long beard.sharp-solarized-themeA sepia-toned, high-contrast light theme family based on tinytinytinytiny and Josh Spicer's VSCode themessnazzy-lightA Snazzy Light theme for Zedaizen-themeMidnight coding sessions with warm peach glow and soft purple hazegato-themeElegant dark themes using the Gato OS paletteashenA dark, warm, muted color scheme. Now on Zed!mangoesA theme that tastes like its namesercaliA Sercali theme family with Blur and Opaque variants.eclatImmersed in peace and a muted colorschemevibrant-abyssA high-contrast pitch black theme based on the original for Visual Studio Code.optima-themeA beautiful dark minimal theme for Zed editorzomorrod-themeA visually appealing cool themequbik-themeQubik theme for ZedrailgunRailgun Themes based on the gorgeous theme suite by be5invissushi-themeA fresh theme inspired by Sushi.anticuusAn opinionated dark theme based off of vim's industry colorschemeregex-themeA high-contrast black theme with muted gray text and restrained blue, cyan, orange, and magenta accents designed for clarity and long coding sessions.apathy-themeA dark, low-contrast theme family with muted purple undertones for reduced eye strain. Includes Apathy, Apathetic Ocean, and Minted variants.formosa-themeA theme inspired by Porsche 911 Carrera T Formosa Taiwan Limited Edition. Colors extracted from Ipanema Blue, Night Green, Truffle Brown, and Cream White.phasmid-themeNeutral theme that blends with application UI's such as Obsidian and Figma, using Jetbrains syntax colors.nube-themeA cozy and vibrant theme for Zedhbuilderx-push-lightA light theme inspired by HBuilderX with green accentstempleos-themeA theme inspired by the TempleOS color paletteunited-gnomeColor themes based on gnomenot-too-shabbyPretty much fine dark theme for Zedrust-and-brownA warm dark theme with brown tones and orange accentsherzha-themeHerzha theme for zed.sonder-themeA dark theme focused on the essentialskeepcalmA calm and focused theme for software development in ZedtiniriCalm and cozy color themes with warm, desaturated colors in light and dark variantsnova-themeNova color scheme for Zed, ported from VSCodewitchesbrew-themeA witchy, wine-y colorscheme for zed. Based on the witchesbrew.nvim theme.cutiepro-themeA dark pastel theme emphasizing warm colors and extraordinarily cute, girly vibesvesper-blurVesper dark theme with blur/transparency effects. Peppermint and orange flavored.dark-glass-themeA collection of translucent, blurred dark themes with 16 unique color tintsvscode-modernLight and dark themes inspired by VSCode Modern themes.ultraviolet-themeA dark, violet-toned theme designed for quality & visual comfortislands-themeA theme inspired by JetBrains' Islands design system, with light and dark variants.one-dark-pro-vivid-themeOne Dark Pro theme with vivid colors and improved contrastatom-one-themeA port of the Atom One Dark theme (originally from the Atom text editor) to ZedIcon themes
catppuccin-icons🦊 Soothing pastel icons for Zedmaterial-icon-themeMaterial Design icons.vscode-iconsOriginal vscode-icons, reimagined for Zedcolored-zed-icons-themeDefault Zed icons, but colored!jetbrains-new-ui-iconsJetBrains New UI icons theme for Zedvscode-great-iconsVSCode great icons theme for Zedmin-themeA port of miguelsolorio's Min Theme for Zed.charmed-iconsA charming icon theme for ZedsymbolsA simple file icon themebearded-icon-themeBearded icon theme for Zed with over 1000+ iconsjetbrains-iconsJetBrains Icons for Zedmodern-iconsVSCode icons theme for Zedphosphor-icons-themeUse Phosphor Icons within the Zed code editor.monospace-icon-themeMonospace icons.seti-iconsSeti Icons Theme for zedchawyehsu-vscode-icons🍇 vscode-icons theme for Zedicons-modern-materialA collection of icons for ZedpuppetExtension for Puppet language supportclean-vscode-iconsIcon theme for Zed packed with icons for many extensions and foldersfantasticons-icons-themeA fastastic icon theme for Zednube-iconsA cozy icon theme for Zedbearded-iconsThe icons with a long beardkokedera-iconsA moss-temple file icon theme — flat, organic shapes in moss, stone, and lantern light.serendipity-iconsSerendipity icon theme for ZedRegistry — MCP, Debuggers & Snippets
107MCP (context) servers
mcp-server-context7Model Context Protocol Server for Context7mcp-server-githubModel Context Protocol Server for GitHubpostgres-context-serverModel Context Server for PostgreSQLmcp-server-sequential-thinkingModel Context Protocol Server for Sequential Thinkingmcp-server-brave-searchModel Context Protocol Server for Brave Searchbrowser-tools-context-serverModel Context Server for BrowserToolsmcp-server-figmaModel Context Protocol Server for FigmagemLanguage Support for Gemmcp-server-gitlabModel Context Protocol Server for GitLabmcp-server-puppeteerModel Context Protocol Server for Puppeteermcp-server-supabaseModel Context Protocol Server for Supabasemcp-server-exa-searchModel Context Protocol Server for Exa Search and Crawling (HTTP)mcp-server-firecrawlModel Context Protocol Server for Firecrawlgithub-activity-summarizerSummarizes your GitHub activity over a period of timeprisma-mcpModel Context Server for Prismamcp-server-grafanaModel Context Protocol Server for Grafanamcp-server-slackSlack's Model Context Servermcp-server-shopify-devModel Context Protocol Server for Shopify Devmcp-server-webflowModel Context Protocol Server for Webflowmcp-server-muiA Zed extension for the documentation-retrieving Material UI MCP Server.mcp-server-resendA Zed extension for the Resend MCP Server.polar-context-serverModel Context Server for Polarmcp-server-newsnowModel Context Protocol Server for NewsNowmcp-server-buildkiteModel Context Protocol Server for Buildkitemcp-planetscaleModel Context Server for interacting with databases on PlanetScale.roverThe Zed extension for Rover, the code reliability platform for fast-moving teams.mcp-server-miaoduoModel Context Protocol Server for MiaoDuomcp-server-container-useAn extension for the container-use MCP server, which provides containerized environments for coding agents.terraform-context-serverModel Context Server for HashiCorp Terraformazure-context-serverModel Context Server for Azuredatadog-mcpDatadog MCP Server for Zedpollinations-mcpPollinations MCP is an extension for integrating Pollinations AI into Zed.cemIDE features for custom elements with intelligent autocomplete and hover documentationmcp-server-tavilyModel Context Protocol Server for Tavilyserena-context-serverModel Context Server for Serena - A powerful coding agent toolkit with semantic code analysismcp-server-markitdownMarkItDown MCP Server for Zedmcp-server-sonarqubeSonarQube MCP Server that enables seamless integration with SonarQube Server or Cloud for code quality and security.mcp-server-shortcutModel Context Protocol (MCP) Server for Shortcutshadcn-mcpUse the shadcn MCP server to browse, search, and install components from registries.mcp-server-nextjsNext.js development tools and utilities MCP serverkagimcpModel Context Protocol Server for Kagi Searchsvelte-mcpAutomatically configure the official Svelte MCP Serverchrome-devtools-mcpModel Context Server for Chrome DevTools MCPbun-docs-mcpBun documentation directly in Zed (https://bun.com/docs/mcp)mcp-server-master-goModel Context Protocol Server for Master-go https://mastergo.com/arch-mcpModel Context Protocol Server for Arch Linux (Wiki, AUR, official repos)mcp-server-playwrightModel Context Protocol Server for Playwrightmcp-server-2slidesAI PPT/slides/presentation generation.mcp-server-powerdrillModel Context Protocol Server for Powerdrillask-starknet-mcpExposes the ask-starknet MCP server to Zed as a context server.mcp-server-relytoneModel Context Protocol Server for RelytONE workspacesmcp-server-notionModel Context Protocol Server for Notionmcp-server-atexploreMCP server for exploring and interacting with the AT Protocol ecosystemmcp-server-atproto-docsRemote MCP server to search and query AT Protocol documentationmcp-server-repomixModel Context Protocol Server for Repomix - Pack and analyze codebases for AI consumptionmcp-server-digitaloceanModel Context Protocol server for DigitalOceanmcp-server-code-runnerMCP Server for running code snippets in multiple programming languagesmcp-server-mysqlModel Context Protocol Server for MySQL databasesDebug adapters
javaJava support.dockerfileDockerfile and Docker Compose support.phpPHP support.rubyRuby support.dartDart and Flutter development support.elixirElixir support.swiftSwift support.haskellHaskell support.gdscriptGodot game engine support for Zed. Adds support for GDScript, Godot Resources (.tres, .tscn), and GDShader files.scalaScala support.tonTon languages support (Tolk, Tact, Func, Fift, TL-B)probe-rsDebugger for embedded systems using probe-rsemmyluaAdvanced Lua language support with EmmyLua annotations, intelligent completions, powerful diagnostics and Debug Adapter Protocol support.autohotkeyAutoHotkey v1 language support for Zed with debuggingSnippets, and the one agent server
python-snippetsPython snippets for Zed IDE. A collection of python snippets to improve your development speed.react-typescript-snippetsA collection of useful React + TypeScript snippets to speed up your development.go-snippetsGo snippets for Zed IDE. A collection of go snippets to improve your development speed.flutter-snippetsA collection of Flutter snippets to improve your development speed.nextjs-react-snippetsA collection of useful NEXTJS + React + JavaScript snippets to speed up your development.vue-snippetsA collection of useful snippets for Vue 3.svelte-snippetsSvelte snippets for the Zed IDE. A collection of Svelte snippets to improve your development speed.react-snippetsReact snippets for zed code editorrust-snippetsRust snippets for the Zed IDE. A collection of Rust snippets to improve your development speed.html-snippetsEssential HTML snippets for faster developmentnestjs-snippetsNestJS snippets for Zed IDE. A collection of NestJS snippets to improve your development speed.fastapi-snippetsA comprehensive collection of production-ready FastAPI snippets for the Zed code editor. Boost your development speed with templates for endpoints, security, database models, FastAPI Cloud, and more.javascript-snippetsEssential JavaScript snippets for faster developmentflask-snippetsFlask snippets for Zed IDE.sqlc-snippetsSqlc and PostgreSQL snippets for Zed IDE.live-templateA collection of snippets.typescript-snippetsEssential TypeScript snippets for faster development with comprehensive type supportliquid-snippetsA collection of useful snippets for Shopify Theme development.fiber-snippetsFiber v2 snippets for Zed IDE.ultralytics-snippetsUltralytics snippets for Zed IDE.solid-typescript-snippetsZed extension with helpful code snippets for SolidJS.php-snippetsEssential PHP snippets for faster developmentalpinejs-snippetsComprehensive Alpine.js v3+ code snippets for faster developmentreact-type-kit-snippetsA comprehensive set of React, React Native, Redux + TypeScript snippets designed to boost productivity and ensure consistent, type-safe code.gdscript-snippetsA collection of Godot 4 snippets for faster development.django-snippetsUseful Django snippets.elixir-snippetsWrite Elixir faster with code snippets.react-snippets-es7Converted React/Redux/React-Native snippets from the popular 'ES7+ React/Redux/React-Native snippets' VSCode extension.angular-snippets(Unofficial) Angular 21 TypeScript snippetserb-snippetsEssential ERB snippets for faster developmentcsharp-snippetsC# snippets for Zed IDE.unity-snippetsA collection of Unity snippets for faster development.vitest-snippetsA comprehensive collection of Vitest snippets for the Zed editor to speed up test development.markdown-snippetsMarkdown snippets for the Zed IDE. A collection of Markdown snippets to improve your documentation speed.stakpakOpen-source DevOps agent in Rust with enterprise-grade security.Registry — Untagged
175Entries the registry returns with an empty provides list — older publishes, before that metadata was recorded. Read the description: most are themes or languages
docker-composeSyntax highlighting for Docker Compose filespylsppython-lsp extension for Zedxcode-themes🍎 Recreate Xcode's native feel in Zed with authentic themes for a seamless, Apple-inspired coding environment.vscode-dark-plusPortable Vscode Dark Plus Themeintellij-newui-themeA Zed theme based on the JetBrains IntelliJ "New UI" colors (default Dark theme only).mermaidMermaid support.python-refactoringRefactoring support for Python.cargo-tomCargo.toml crate/version/features suggestions(offline mode enabled by default) & other usefull Cargo.toml featuresvscode-monokai-charcoalPortable VScode Monokai Charcoalaura-themeA beautiful dark theme for Zedone-dark-pro-monokai-darkerA Darker One Dark Pro variation with Monokai schemejinja2Highlighting and indentation for Jinja2 templatesgrapheneA practical dark theme for Zed.wgslWgsl language support for ZedkdlSyntax highlighting for KDL files.vesperPeppermint and orange flavored dark theme.nanowise🌔 The galaxy in Zed.oxocarbon📺 Inspired by IBM Carbon Design System, this theme is meticulously crafted to offer a refined and professional visual experience, available in multiple dark variations.kiselevkaKiselevka dark color scheme for ZedhttpHighlights .http filesplantumlPlantUML support.poimandrespoimandres themesneosolarizedNeoSolarized Zed theme.adwaita-pastelAdwaita (GNOME) theme for Zed with bold syntax highlighting borrowed from Catppuccinvscode-dark-high-contrastA clone of the Dark High Contrast theme from VSCodeindigoDark. Clean. Indigo.catppuccin-blur-plusCatppuccin themes with blur, a blue accent color, and strong definition between panes.vitesseVitesse Theme For ZedexquisiteA dark blue theme for better coding experience.warp-one-darkZed theme to match Warp terminal UI with one dark pro styling.superhtmlSuperhtml support.palenightThe popular Palenight theme now in Zed!one-hunterA port to Zed of the famous One Hunter Theme for VSCode by Railly HugozedspaceZedSpace dark theme for Zedone-dark-extendedOne Dark Extended theme for Zedmaterial-themeMaterial Theme for ZedperplexityAsk questions to Perplexity AI directly from ZednorrskenAn aurora-inspired theme designed to minimize eye strain and improve syntax highlighting.amber-monochrome-monitor-crt-phosphor📺 Designed to replicate the classic CRT monitors, this theme features a black background with vibrant amber text for the dark mode, while the light mode offers a soft amber background for contrast.beardedbearded themes from vscode converted to zedchatgpt📺 Inspired by the sleek design and intuitive color scheme of ChatGPT, this theme offers a refreshing and visually appealing coding experience.quill🪶 Quill theme for ZedejsEJS template support for ZedleblackqueA dark and elegant themevscode-classic-themeClassic vscode themecall-trans-opt-received📺 An iconic aesthetic of the shell screen from the 1999 film The Matrix, inspired by the film's opening command 'Call trans opt: received. 2-19-98 13:24:18 REC>'asteroidA dark cyan theme inspired by the vastness of space. Optimized for reduced eye strain and enhanced code readability.orgOrg Mode support for ZedblackulaA superdark Dracula theme for Zedgruvbox-ishGruvbox ish theme from VSCode ported to zed.hacker-night-vision📺 A monochromatic theme with a vibrant palette for effective contrast. Inspired by secret agency operating systems, this theme adds a touch of espionage to your coding environment.anyaKeeping it minimal and readable. Inspired by Vesper.simple-darkerSimple Darker Theme for zedsclsAllow to use common word completion and snippets for Helix editorvaleZed extension adding Vale spell checking and style checking.green-monochrome-monitor-crt-phosphorDesigned to replicate the classic CRT monitors, the dark version features a black background with vibrant green text, while the light version has a soft green background for contrast.frosted-themeno descriptionhorizonHorizon theme for ZedsyntaxA new take on a Syntax.fm theme. Yellows/Teals/RedscatboxGruvbox-inspired theme for ZedsnowflakeClean modern theme in shades of light blue and white.github-monochrome-themeMonochrome theme based on Github light mode syntax highlightingcosmosCosmos theme for Zedc3This extension bring basic c3 language support to zed. NOTE: This extension is still a WIP!brainfuckBrainfuck language support for ZedwitWIT support.yogi-amoledAn amoled theme. Based on Monokai Pro theme, but with totally black backgrounds.cobalt2Cobalt2 theme for ZedhlslHLSL Supportevil-rabbit-themeA port of the Evil Rabbit theme.ronProvides RON Syntax Highlightingocean-dark-motifsOcean Dark Motifs theme for ZedsurrealqlSurrealDB SurrealQL language supportvapor-themeA theme inspired on Vapor's Theme from Steam DeckawkAWK syntax for ZedmellowZed port of the Mellow color schemecythonCython language support for Zedsolarized-fpJayTr's solarized-fp ThemeskconfigKconfig supporticebergIceberg is well-designed, bluish color scheme for Vim/Neovim and now, Zed.unicodeUnicode characters for Zedcity-lightsA take on Yummygum's City Lights Dark ThemevalaVala support.neon-cyberpunkA high-contrast, neon-infused cyberpunk theme that transforms your editor into a futuristic megalopolis.zedrack-themeVim-insipred strong-contrast transparent themecadenceProvides syntax highlighting for the Cadence programming language.focus-themeFocus is a collection of themes created to cause less eye strain and help you focus on codeslimSlim template support.vintergataA dark and cyan theme inspired by the Milky Way. Designed to minimize eye strain and improve syntax highlighting.wakfu-themeWakfu Theme for Zedterrible-themeA terrible theme for zeddbmlDatabase Markup Language (DBML) support.devicetreeDeviceTree syntax highlighttanuki🦝 A Zed theme inspired by the GitLab Web IDE themestruct-themeHigh contrast dark theme to match https://destruct.devatomizeA detailed and accurate Atom One Dark themeregoZed extension for the Rego policy languagepenumbraPenumbra light and dark colour themesobsidian-sunsetObsidian Sunset is a dark and colorful theme for Zed, VSCode and IntelliJ that enhances the readability and aesthetics of your code.hurlHurl file syntax highlightinggroqGROQ support.capnpCap'n Proto syntax for ZedtwilightA variation of a classic Textmate theme.openscadOpenSCAD language supportmarine-darkColorscheme inspired by deep marine hues, designed by The ProDeSquarechanterelleA dark theme inspired by the nordic forest.glazierGlassy themes for ZedtsarcasmLighten up, it's a dark Zed thememutedMuted Themesconfluence-context-serverConfluence Context ServerbitbakeBitbake language support for the Zed editorcrystal-themeA sleek and modern theme for Zed inspired by crystal formations, featuring vibrant colors and smooth gradients for enhanced coding aesthetics and readabilityadaltas-themeElegantly designed dark theme with sharp contrast colors.nobin-themePersonal Theme (Twisted version of Dracula)jira-slash-commandAdds a 'jira' slash command to fetch a JIRA issue by key and include it in context as a JSON object.malibuA retro theme inspired by the surfing days in Malibu beachoasisA minimal, soothing theme for your high-frequency coding experiencepica200Syntax highlighting for PICA200 GPU assembly.rpmspecRPM Spec language support for ZedsmithySmithy language support for ZedziggyZiggy and ziggy schema support for Zedcpp2Cpp2 support for Zed Editorlibsql-context-serverModel Context Protocol Server for LibsqlpoGettext PO support.decorative-stitchDecorative Stitch theme for Zed.
Subtle, sophisticated, pleasing to the eye and conducive to writing beautiful code.adechInspired by loneliness and using cold colors, Adech theme was created to remember us the matter of an individual that doesn't depends on external things. To think about our nature, what we are and the things we cannot explain, but accept.mayaA dark theme based on years of tweaking.iceicebergyTurn off the lights and I'll glowkamui-dark-themeMy cool themeariakeAn Ariake theme inspired by Japanese traditional colors for Zedoh-lucyOh Lucy Theme for Zed. Based on the Oh Lucy theme for VS Code.underground-themeUnderground theme for Zed editorsnakemakeGrammar for snakemake filesvhsSyntax highlighting for VHS `.tape` filesgrey-themeLight. Minimal. Grey.wdlSyntaxt highlighting and LSP support for the Workflow Description Language (WDL).janetZed extension for Janet programming language.snow-fox-themeSnowFox is a cool and warm theme for Zed Editor inspired by the serene beauty of snow and the vibrant energy of foxes.nuisanceLess nuisance - Zed themecypherZed Extension for cypherpactPact Programming Language extension for Zedpinata-themeA theme modeled after the Pinata design systemphine-themeA phine zed theme.kubesongkubesongearthfileEarthly language server and syntax highlightingfennelLanguage support for FennelsourcepawnAn extension that adds basic language support, including LSP & highlighting, for Sourcepawn.idris2Idris2 support.yellowedA yellow material theme for ZednickelSupport for the Nickel configuration language.replicantA port of Kenzie Bottoms' Replicant theme, based on a palette from Bladerunner.cedarCedar language support.cooklangCooklang support.onurbA dark theme for ZedduckyscriptDuckyScript supportaikenAiken language support for ZedhareHare support for ZedmoselA port of Domeee's Mosel neovim theme.loxLox syntax highlighting for ZedbendBend support.bqnBQN language support for ZeddafnyDafny support.path-of-exilePath of Exile .filter file syntax highlighting for Zed.fiberplane-studioQuery runtime information captured by the Fiberplane Studio in your Zed Assistant panelexographExograph syntax highlighting.ediBasic EDI X12 language support.inform6Zed language support for the Inform 6 programming language.permPerm schema support for Permify schemas.curryCurry language support for ZedsimulaExtension for SimulawhkdTree-sitter syntax highlighting for whkdcylcCylc configuration files support.fsmFSM language support for ZedquakecZed language support for the QuakeC languageisleISLE language support.