feat(nvim): add my plugins

This commit is contained in:
thek4n 2024-04-12 14:22:58 +03:00
parent 931f3358b0
commit 588e3a5012
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@ return {
"thek4n/mdimage.nvim", "thek4n/mdimage.nvim",
config = function() config = function()
require("mdimage").setup({ require("mdimage").setup({
img_path = "/home/thek4n/.notes/.img", target_path = vim.env.HOME .. "/.notes/.img",
}) })
end end
} }

View File

@ -0,0 +1,6 @@
return {
"thek4n/postman.nvim",
config = function()
require("postman").setup()
end
}