nvim: add MD preview
This commit is contained in:
parent
c3f6b790a9
commit
2ff89694d3
1 changed files with 8 additions and 0 deletions
|
@ -107,6 +107,14 @@ return packer.startup(function(use)
|
||||||
use("windwp/nvim-autopairs") -- autoclose parens, brackets, quotes, etc...
|
use("windwp/nvim-autopairs") -- autoclose parens, brackets, quotes, etc...
|
||||||
use({ "windwp/nvim-ts-autotag", after = "nvim-treesitter" }) -- autoclose tags
|
use({ "windwp/nvim-ts-autotag", after = "nvim-treesitter" }) -- autoclose tags
|
||||||
|
|
||||||
|
use({
|
||||||
|
"iamcco/markdown-preview.nvim",
|
||||||
|
run = "cd app && npm install",
|
||||||
|
setup = function()
|
||||||
|
vim.g.mkdp_filetypes = { "markdown" }
|
||||||
|
end,
|
||||||
|
ft = { "markdown" },
|
||||||
|
})
|
||||||
-- GitHub Copilot
|
-- GitHub Copilot
|
||||||
|
|
||||||
use({
|
use({
|
||||||
|
|
Loading…
Add table
Reference in a new issue