1
0

Update home/.config/lvim/lua/user/plugins.lua

This commit is contained in:
Jeff Lance 2024-05-02 09:55:50 +02:00
parent 833c5922ae
commit 6997fef110

View File

@ -157,6 +157,21 @@ M.setup = function()
]]) ]])
end, end,
}, },
-- markdown to pdf conversion
{
'arminveres/md-pdf.nvim',
branch = 'main',
lazy = true,
config = function()
local mdpdf = require('md-pdf')
mdpdf.setup({
margins = "0.8cm",
highlight = "tango",
toc = false,
preview_cmd = function() return 'zathura' end
})
end,
},
-- mason -- mason
{ {
'WhoIsSethDaniel/mason-tool-installer.nvim', 'WhoIsSethDaniel/mason-tool-installer.nvim',