Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 606 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 606 Bytes

Neovim Gemini client

An extremely basic neovim gemini client

Dependancies

gmni

Setup

local g = require"gemini"
g.setup{}

Now, whenever you enter a gemini:// file it will actually open it

Usage

open a gemini:// url with nvim

to follow links use gf

Certificates

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