diff options
| author | Greger Olsson <greger.olsson@redstone.se> | 2023-06-14 22:19:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-14 22:19:29 +0200 |
| commit | 317fb3756c5c8c3021266166b4ef6ec869fa9ff4 (patch) | |
| tree | 42a618552cfad95b3a471fb2efd3d1a629ccbcb1 /README.md | |
| parent | 7db1b078fc637eb1cee2592f01ecbe2f8c6b4193 (diff) | |
Update README.md
Added section for Micro editor
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -16,6 +16,7 @@ Language server for Odin. This project is still in early development. - [Neovim](#neovim) - [Emacs](#emacs) - [Helix](#helix) + - [Micro](#micro) ## Installation @@ -198,3 +199,15 @@ injection-regex = "odin" roots = ["ols.json"] formatter = { command = "odinfmt", args = [ "-stdin", "true" ] } ``` + +### Micro + +Install the [LSP plugin](https://github.com/AndCake/micro-plugin-lsp) + +Configure the plugin in micro's settings.json: + +```json +{ + "lsp.server": "c=clangd,go=gopls,odin=ols" +} +``` |