From 12cf3c041821652a5590c6baa361999a28190f03 Mon Sep 17 00:00:00 2001 From: Dominik Link Date: Fri, 7 Feb 2025 04:04:35 +0100 Subject: [PATCH] feat(docs): added Packer to the readme and fixed vim-plug to also use render-markdown because if not it breaks (#1203) --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index c1674ba..18ab5c1 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ For building binary if you wish to build from source, then `cargo` is required. Plug 'stevearc/dressing.nvim' Plug 'nvim-lua/plenary.nvim' Plug 'MunifTanjim/nui.nvim' +Plug 'MeanderingProgrammer/render-markdown.nvim' " Optional deps Plug 'hrsh7th/nvim-cmp' @@ -169,6 +170,38 @@ end) +
+ + Packer + +```vim + + -- Required plugins + use 'stevearc/dressing.nvim' + use 'nvim-lua/plenary.nvim' + use 'MunifTanjim/nui.nvim' + use 'MeanderingProgrammer/render-markdown.nvim' + + -- Optional dependencies + use 'hrsh7th/nvim-cmp' + use 'nvim-tree/nvim-web-devicons' -- or use 'echasnovski/mini.icons' + use 'HakonHarnes/img-clip.nvim' + use 'zbirenbaum/copilot.lua' + + -- Avante.nvim with build process + use { + 'yetone/avante.nvim', + branch = 'main', + run = 'make', + config = function() + require('avante_lib').load() + require('avante').setup() + end + } +``` + +
+
Lua