diff --git a/init.lua b/init.lua index 2ad0f16b..152a5228 100644 --- a/init.lua +++ b/init.lua @@ -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,