Add markview.nvim plugin

This commit is contained in:
smashblu 2024-08-05 10:59:01 -07:00
parent 1f0c034f6f
commit 225500b99e
1 changed files with 14 additions and 0 deletions

View File

@ -164,6 +164,20 @@ vim.opt.rtp:prepend(lazypath)
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
{
'OXY2DEV/markview.nvim',
lazy = false, -- Recommended
-- ft = "markdown" -- If you decide to lazy-load anyway
dependencies = {
-- You will not need this if you installed the
-- parsers manually
-- Or if the parsers are in your $RUNTIMEPATH
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
},
},
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can also be added by using a table,