Add markview.nvim plugin
This commit is contained in:
parent
1f0c034f6f
commit
225500b99e
14
init.lua
14
init.lua
|
@ -164,6 +164,20 @@ vim.opt.rtp:prepend(lazypath)
|
||||||
-- NOTE: Here is where you install your plugins.
|
-- NOTE: Here is where you install your plugins.
|
||||||
require('lazy').setup({
|
require('lazy').setup({
|
||||||
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
-- 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
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||||
|
|
||||||
-- NOTE: Plugins can also be added by using a table,
|
-- NOTE: Plugins can also be added by using a table,
|
||||||
|
|
Loading…
Reference in New Issue