[nvim] added markview.nvim
This commit is contained in:
parent
63753df2ae
commit
a82825d92c
1 changed files with 18 additions and 0 deletions
|
@ -23,6 +23,24 @@ return {
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
ft = 'qf'
|
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",
|
"folke/zen-mode.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
|
|
Loading…
Reference in a new issue