From 1efce5e5b0e5fabe9618c19990e32320797e85e2 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 30 Oct 2024 13:14:56 -0400 Subject: [PATCH] packer now shows updates in a popup --- .config/nvim/lua/plugins.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index af57e9f..0c0abfb 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -26,6 +26,14 @@ if not status then return end +packer.init({ + display = { + open_fn = function() + return require('packer.util').float({ border = 'rounded' }) + end, + }, +}) + -- add list of plugins to install return packer.startup(function(use) use("wbthomason/packer.nvim") @@ -50,9 +58,6 @@ return packer.startup(function(use) "MeanderingProgrammer/render-markdown.nvim", after = { 'nvim-treesitter' }, requires = { 'nvim-tree/nvim-web-devicons', opt = true }, - config = function() - require('render-markdown').setup({}) - end, }) use("seanbreckenridge/gitsigns-yadm") -- bring yadm support back to gitsigns