neovim configuration using rocks.nvim plugin manager

fix: disable indent-blankline for markup languages

+2 -11
+2
lua/plugins/indent-blankline.lua
··· 6 6 filetypes = { 7 7 "octo", 8 8 "janet", 9 + "markdown", 10 + "norg", 9 11 } 10 12 } 11 13 })
-11
lua/plugins/markview.lua
··· 1 1 require("markview").setup({ 2 2 preview = { 3 3 enable = false, 4 - callbacks = { 5 - -- FIX: this is buggy. maybe because it is called *after* enabling 6 - on_enable = function(_buf, _win) 7 - vim.cmd("IBLDisable") 8 - end, 9 - on_disable = function(_buf, _win) 10 - vim.schedule(function() 11 - vim.cmd("IBLEnable") 12 - end) 13 - end, 14 - }, 15 4 }, 16 5 })