refactor(plugins): remove peek

This commit is contained in:
David Bell 2023-04-04 20:07:57 +01:00
parent 9646fc487a
commit 7126848668
No known key found for this signature in database
GPG Key ID: EB8E7B08C6DE0FD7
2 changed files with 0 additions and 22 deletions

View File

@ -1,20 +0,0 @@
return {
"toppair/peek.nvim",
ft = "markdown",
build = "deno task --quiet build:fast",
init = function()
require("peek").setup({
auto_load = true,
close_on_bdelete = true,
syntax = false,
theme = "light",
update_on_change = true,
app = 'webview',
filetype = {"markdown"},
throttle_at = 200000,
throttle_time = "auto",
})
require("peek_settings.commands")
end,
}

View File

@ -1,2 +0,0 @@
vim.api.nvim_create_user_command('PeekOpen', require('peek').open, {})
vim.api.nvim_create_user_command('PeekClose', require('peek').close, {})