Skip to content

Commit

Permalink
Add Zed Editor Support (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxoman authored Jul 18, 2024
1 parent 3b25c6d commit cf3369e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": ["-"]
}
}
}
}
```

0 comments on commit cf3369e

Please sign in to comment.