Add nvim config
This commit is contained in:
parent
b227b7cb19
commit
25a48b5694
48 changed files with 1550 additions and 2 deletions
10
home/.config/nvim/lua/plugins/markdown-preview.lua
Normal file
10
home/.config/nvim/lua/plugins/markdown-preview.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
-- Markdown preview
|
||||
--- @type LazyPluginSpec
|
||||
return {
|
||||
"iamcco/markdown-preview.nvim",
|
||||
build = "cd app && yarn install",
|
||||
config = function()
|
||||
vim.g.mkdp_filetypes = { "markdown" }
|
||||
end,
|
||||
ft = { "markdown" },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue