From 9a725dfc3e23c96aad7fe4d9b46699c667df28ca Mon Sep 17 00:00:00 2001 From: Jannik Donker Date: Tue, 28 Apr 2026 11:36:54 +0200 Subject: [PATCH] added markdown render --- lua/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index b2fe8a9..0424a4e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -20,6 +20,7 @@ vim.pack.add({ { src = "https://github.com/stevearc/conform.nvim" }, { src = "https://github.com/folke/flash.nvim" }, { src = "https://github.com/lewis6991/gitsigns.nvim" }, + { src = "https://github.com/MeanderingProgrammer/render-markdown.nvim" }, { src = "https://github.com/folke/trouble.nvim" }, { src = "https://github.com/nvim-neotest/nvim-nio" }, { src = "https://github.com/rcarriga/nvim-dap-ui" }, @@ -53,6 +54,11 @@ require("conform").setup({ format_on_save = { timeout_ms = 500, lsp_format = "fallback" }, }) +require("render-markdown").setup({ + latex = { enabled = true }, + inline = { highlight = "RenderMarkdownCode" }, +}) + require("lualine").setup({ options = { theme = "gruvbox_dark" } }) require("blink.cmp").setup({ keymap = { preset = "super-tab" } })