Home

Awesome

lispdocs.nvim

View community usage examples/notes from within your editor.

Installation

Note: This plugin will only work on neovim 0.5.

Plug 'olical/conjure'
Plug 'kkharji/sqlite.lua'
Plug 'kkharji/lispdocs.nvim' " its a filetype plugin so no need to do any extra work.

Mappings:

Options:

disable default mappings: let g:lispdocs_mappings = 0

API

lispdocs functions takes a dict defining the following.

Examples:

nnoremap <leader><cr> :lua require'lispdocs'.float{ fill = 0.5, win = { winblend = 0, :cursorline false }}<cr>
nnoremap <leader>clojure :lua require'lispdocs'.split{ buf = {ft = "clojure"}}<cr> " bad idea

Someday