diff --git a/docs/plugins.org b/docs/plugins.org index fea418405..5f00c2a4b 100644 --- a/docs/plugins.org +++ b/docs/plugins.org @@ -12,6 +12,7 @@ Orgmode supports various plugins to extend its functionality or make it more pre - [[#completion-plugins][Completion plugins]] - [[#blinkcmp][blink.cmp]] - [[#nvim-cmp][nvim-cmp]] + - [[#rolodexnvim][rolodex.nvim]] - [[#aesthetics][Aestehtics]] - [[#org-bulletsnvim][org-bullets.nvim]] - [[#headlinesnvim][headlines.nvim]] @@ -86,6 +87,21 @@ require('cmp').setup({ }) #+END_SRC +*** rolodex.nvim +:PROPERTIES: +:CUSTOM_ID: rolodexnvim +:END: +Link: [[https://github.com/michhernand/rolodex.nvim][rolodex.nvim]] +1. Add [[https://github.com/michhernand/rolodex.nvim][rolodex.nvim]] plugin to Neovim. +2. Add the =cmp_rolodex= source to =nvim-cmp= ~sources~ list. +#+BEGIN_SRC lua +require('cmp').setup({ + sources = { + { name = 'cmp_rolodex' } + } +}) +#+END_SRC + ** Aestehtics :PROPERTIES: :CUSTOM_ID: aesthetics