[nvim] added markview.nvim

This commit is contained in:
Afonso Franco 2024-09-06 16:10:33 +01:00
parent 63753df2ae
commit a82825d92c
Signed by: afonso
SSH key fingerprint: SHA256:PQTRDHPH3yALEGtHXnXBp3Orfcn21pK20t0tS1kHg54

View file

@ -23,6 +23,24 @@ return {
event = "VeryLazy",
ft = 'qf'
},
{
"OXY2DEV/markview.nvim",
ft = "markdown",
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons",
},
opts = {
modes = { "n", "no", "i", "c" },
hybrid_modes = { "i" },
callbacks = {
on_enable = function(_, win)
vim.wo[win].conceallevel = 2;
vim.wo[win].concealcursor = "c";
end
}
}
},
{
"folke/zen-mode.nvim",
event = "VeryLazy",