first commit

This commit is contained in:
captain 2024-10-07 15:29:32 +08:00
commit 6955e90e07
61 changed files with 3641 additions and 0 deletions

View file

@ -0,0 +1,16 @@
-- ===
-- === markdown preview
-- ===
return {
"iamcco/markdown-preview.nvim",
build = "cd app && npm install",
init = function() vim.g.mkdp_filetypes = { "markdown" } end,
ft = { "markdown" },
lazy = true,
config = function()
-- 设置使用谷歌浏览器进行预览
vim.g.mkdp_browser = '/usr/bin/google-chrome-stable'
end
}