From 63213253386c47f9e8949e8e18438739633bda72 Mon Sep 17 00:00:00 2001 From: Lucas Barbieri Date: Mon, 15 Jul 2024 10:10:38 -0300 Subject: [PATCH] feat: add new markdown plugins --- lua/custom/plugins/markdown-mode.lua | 4 ++++ lua/custom/plugins/markdown.lua | 10 ++++++++++ lua/custom/plugins/no-neck.lua | 4 ++++ 3 files changed, 18 insertions(+) create mode 100644 lua/custom/plugins/markdown-mode.lua create mode 100644 lua/custom/plugins/markdown.lua create mode 100644 lua/custom/plugins/no-neck.lua diff --git a/lua/custom/plugins/markdown-mode.lua b/lua/custom/plugins/markdown-mode.lua new file mode 100644 index 0000000..f62e965 --- /dev/null +++ b/lua/custom/plugins/markdown-mode.lua @@ -0,0 +1,4 @@ +return { + "https://github.com/tadmccorkle/markdown.nvim", + opts = {}, +} diff --git a/lua/custom/plugins/markdown.lua b/lua/custom/plugins/markdown.lua new file mode 100644 index 0000000..59f1ce8 --- /dev/null +++ b/lua/custom/plugins/markdown.lua @@ -0,0 +1,10 @@ +return { + 'MeanderingProgrammer/markdown.nvim', + 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 + config = function() + require('render-markdown').setup({}) + end, +} diff --git a/lua/custom/plugins/no-neck.lua b/lua/custom/plugins/no-neck.lua new file mode 100644 index 0000000..a73bff0 --- /dev/null +++ b/lua/custom/plugins/no-neck.lua @@ -0,0 +1,4 @@ +return { + "shortcuts/no-neck-pain.nvim", + opts = {}, +}