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": ["-"] + } + } + } + } +```