this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

readme: update config example

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

+5 -1
+5 -1
README.md
··· 22 22 Works best with `soju`. pico.sh runs a free instance of `soju` and has fantastic 23 23 [documentation](https://pico.sh/irc) on how to get connected 24 24 25 - ```zig 25 + ```lua 26 26 local comlink = require("comlink") 27 27 28 28 local config = { ··· 34 34 tls = true, 35 35 } 36 36 37 + -- Pass the server config to connect. Connect to as many servers as you need 37 38 comlink.connect(config) 39 + 40 + -- Bind a key to an action 41 + comlink.bind("ctrl+c", "quit") 38 42 ``` 39 43 40 44 ## Contributing