An extremely basic neovim gemini client
local g = require"gemini"
g.setup{}
Now, whenever you enter a gemini://
file it will actually open it
open a gemini://
url with nvim
to follow links use gf
To add certificates for a domain add the following to the setup table
certificates = {
["domain.example.com"] = {
key = "~/path/to/key-file.pem",
cert = "~/path/to/cert-file.pem"
}
}
See the help doc for more