aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGreger Olsson <greger.olsson@redstone.se>2023-06-14 22:19:29 +0200
committerGitHub <noreply@github.com>2023-06-14 22:19:29 +0200
commit317fb3756c5c8c3021266166b4ef6ec869fa9ff4 (patch)
tree42a618552cfad95b3a471fb2efd3d1a629ccbcb1 /README.md
parent7db1b078fc637eb1cee2592f01ecbe2f8c6b4193 (diff)
Update README.md
Added section for Micro editor
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index cb65195..e995f21 100644
--- a/README.md
+++ b/README.md
@@ -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"
+}
+```