Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiphish/nvim-cmp-vlime
(Mirror) Completion source for nvim-cmp using Vlime for Common Lisp completions.
https://github.com/hiphish/nvim-cmp-vlime
common-lisp neovim nvim-cmp
Last synced: 2 months ago
JSON representation
(Mirror) Completion source for nvim-cmp using Vlime for Common Lisp completions.
- Host: GitHub
- URL: https://github.com/hiphish/nvim-cmp-vlime
- Owner: HiPhish
- License: mit
- Created: 2022-11-21T23:53:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-29T11:31:55.000Z (about 2 years ago)
- Last Synced: 2024-05-13T15:59:59.746Z (9 months ago)
- Topics: common-lisp, neovim, nvim-cmp
- Language: Lua
- Homepage: https://gitlab.com/HiPhish/nvim-cmp-vlime
- Size: 29.3 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
.. default-role:: code
###########
cmp-vlime
###########Completion source for `nvim-cmp`_ which uses `Vlime`_ for completion
candidates... image:: https://user-images.githubusercontent.com/4954650/209943725-6b913d42-8285-48b1-b800-2301b42016cb.png
:alt: Screenshot of Neovim showing a piece of Common Lisp code being
completed; the completions are shown in a floating window and next to
the completions there is a floating window showing the documentation
for the currently selected item.Installation
############Install this like any other plugin. The source will be automatically registered
for use with nvim-cmp, but you still have to reference it in your
configuration. Example:
.. code:: luarequire('cmp').setup.filetype({'lisp'}, {
sources = {
{name = 'vlime'}
}
})For more information please refer to the documentation_.
License
#######Licensed under the terms of the MIT (Expat) license. Please refer to the
LICENSE_ file for more information... ----------------------------------------------------------------------------
.. _nvim-cmp: https://github.com/hrsh7th/nvim-cmp/
.. _Vlime: https://github.com/vlime/vlime
.. _documentation: doc/cmp-vlime.txt
.. _License: LICENSE.txt