From cf3369e39f3eb25388ed86d10bd41089b51c862d Mon Sep 17 00:00:00 2001 From: Sultan Al Isaiee Date: Thu, 18 Jul 2024 16:43:17 +0400 Subject: [PATCH] Add Zed Editor Support (#74) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 860cf66..b370333 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,16 @@ nimble build * [VSCode](https://marketplace.visualstudio.com/items?itemName=arnetheduck.vscode-nph) (`ext install arnetheduck.vscode-nph`) * [NeoVim](https://github.com/sbdchd/neoformat) - Install **neoformat** in your neovim setup then add the nim formating option with **nph** with this option in init.vim `let g:neoformat_enabled_nim = ['nph']` +* [Zed Editor](https://github.com/foxoman/zed-nim) - Use this in your editor settings +``` +"languages": { + "Nim": { + "formatter": { + "external": { + "command": "nph", + "arguments": ["-"] + } + } + } + } +```