From 55c7a8d1e2ccf010e7439f372d7482019f7e6387 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Sun, 7 Apr 2024 10:34:32 +0200 Subject: [PATCH] Markdownpreview --- lua/markdownpreview.lua | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 lua/markdownpreview.lua diff --git a/lua/markdownpreview.lua b/lua/markdownpreview.lua deleted file mode 100644 index bbb405c..0000000 --- a/lua/markdownpreview.lua +++ /dev/null @@ -1,23 +0,0 @@ --- default config: -require("peek").setup({ - auto_load = true, -- whether to automatically load preview when - -- entering another markdown buffer - close_on_bdelete = true, -- close preview window on buffer delete - - syntax = true, -- enable syntax highlighting, affects performance - - theme = "dark", -- 'dark' or 'light' - - update_on_change = true, - - app = "webview", -- 'webview', 'browser', string or a table of strings - -- explained below - - filetype = { "markdown" }, -- list of filetypes to recognize as markdown - - -- relevant if update_on_change is true - throttle_at = 200000, -- start throttling when file exceeds this - -- amount of bytes in size - throttle_time = "auto", -- minimum amount of time in milliseconds - -- that has to pass before starting new render -})