27022024-1
This commit is contained in:
parent
8cad76be8e
commit
e172c1bd99
3 changed files with 13 additions and 10 deletions
|
@ -1,9 +0,0 @@
|
|||
return {
|
||||
"iamcco/markdown-preview.nvim",
|
||||
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||
ft = { "markdown" },
|
||||
build = function()
|
||||
vim.fn["mkdp#util#install"]()
|
||||
end,
|
||||
lazy = false,
|
||||
}
|
12
global/.config/nvim/lua/plugins/peek.lua
Normal file
12
global/.config/nvim/lua/plugins/peek.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"toppair/peek.nvim",
|
||||
event = { "VeryLazy" },
|
||||
build = "deno task --quiet build:fast",
|
||||
config = function()
|
||||
require("peek").setup()
|
||||
-- refer to `configuration to change defaults`
|
||||
vim.api.nvim_create_user_command("PeekOpen", require("peek").open, {})
|
||||
vim.api.nvim_create_user_command("PeekClose", require("peek").close, {})
|
||||
end,
|
||||
lazy = false,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue