neovim configuration using rocks.nvim plugin manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: switch to markdown.nvim from markview.nvim

+11 -16
+7
lua/plugins/markdown.lua
··· 1 + require("render-markdown").setup({ 2 + enabled = false, 3 + code = { 4 + sign = false, 5 + border = "thick", 6 + }, 7 + })
-14
lua/plugins/markview.lua
··· 1 - require("markview").setup({ 2 - -- on_enable = function () 3 - -- pcall(vim.cmd --[[@as function]], "IBLDisable") 4 - -- end, 5 - -- on_disable = function () 6 - -- pcall(vim.cmd --[[@as function]], "IBLEnable") 7 - -- end, 8 - }) 9 - vim.api.nvim_create_autocmd("FileType", { 10 - pattern = "markdown", 11 - callback = function (ev) 12 - vim.keymap.set("n", "<cr>", "<cmd>Markview toggle<cr>", { buffer = ev.bufnr }) 13 - end 14 - })
+4 -2
rocks.toml
··· 100 100 rev = "7d6de91881a1b702fca2fe1e7f5ae88670a42b2a" 101 101 branch = "fix/getregtype" 102 102 103 - [plugins."markview.nvim"] 104 - dir = "~/repo/markview.nvim/" 103 + [plugins."markdown.nvim"] 104 + # dir = "~/repo/markdown.nvim" 105 + git = "meanderingprogrammer/markdown.nvim" 106 + rev = "v4.1.0^{}" 105 107 106 108 [config] 107 109 auto_setup = false