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" } })