nvim-config/lua/plugins/misc.lua

32 lines
934 B
Lua

return {
"tpope/vim-surround", -- Surround stuff with the ys-, cs-, ds- commands
{
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.icons" }, -- if you use standalone mini plugins
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {},
},
{
"tamton-aquib/duck.nvim",
config = function()
local duck = require("duck")
duck.hatch("🦀", 10)
duck.hatch("🦀", 10)
vim.keymap.set("n", "<leader>dn", function()
duck.hatch("🦀", 10)
end, {})
vim.keymap.set("n", "<leader>dk", function()
duck.cook()
end, {})
end,
},
{
"m4xshen/hardtime.nvim",
lazy = false,
dependencies = { "MunifTanjim/nui.nvim" },
opts = {},
},
}