Resolved merge conflicts
This commit is contained in:
23
lua/markdownpreview.lua
Normal file
23
lua/markdownpreview.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
-- 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
|
||||
})
|
||||
@@ -54,4 +54,5 @@ return {
|
||||
"neovim/nvim-lspconfig",
|
||||
"mfussenegger/nvim-dap",
|
||||
"mhartington/formatter.nvim",
|
||||
"mg979/vim-visual-multi",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user