change markdown plugin
This commit is contained in:
parent
9445446b30
commit
a883718e97
2 changed files with 12 additions and 7 deletions
|
@ -324,10 +324,10 @@ Telescope find_files hidden=true
|
||||||
|
|
||||||
#### Markdown Preview
|
#### Markdown Preview
|
||||||
|
|
||||||
Mardkown Preview plugin commands:
|
Mardkown plugin commands:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
:MarkdownPreview*
|
:RenderMarkdown*
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Git stuff
|
#### Git stuff
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
{
|
|
||||||
'iamcco/markdown-preview.nvim',
|
|
||||||
build = function() vim.fn["mkdp#util#install"]() end
|
|
||||||
},
|
|
||||||
{ 'mracos/mermaid.vim' },
|
{ 'mracos/mermaid.vim' },
|
||||||
-- Nvim-tree stuff
|
-- Nvim-tree stuff
|
||||||
{ 'nvim-tree/nvim-web-devicons' }, -- optional, for file icons
|
{ 'nvim-tree/nvim-web-devicons' }, -- optional, for file icons
|
||||||
|
@ -151,6 +147,15 @@ require("lazy").setup({
|
||||||
'rcarriga/nvim-notify',
|
'rcarriga/nvim-notify',
|
||||||
opts = require('plugins.nvim-notify').config
|
opts = require('plugins.nvim-notify').config
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'MeanderingProgrammer/markdown.nvim',
|
||||||
|
main = "render-markdown",
|
||||||
|
opts = {},
|
||||||
|
name = 'render-markdown', -- Only needed if you have another plugin named markdown.nvim
|
||||||
|
--dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
||||||
|
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
||||||
|
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
opts = require('plugins.lualine').config
|
opts = require('plugins.lualine').config
|
||||||
|
@ -159,7 +164,7 @@ require("lazy").setup({
|
||||||
{ 'sheerun/vim-polyglot' },
|
{ 'sheerun/vim-polyglot' },
|
||||||
|
|
||||||
-- themes
|
-- themes
|
||||||
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||||
|
|
||||||
--Fuzzy search by Telescope and its dependencies:
|
--Fuzzy search by Telescope and its dependencies:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue