initial commit
This commit is contained in:
commit
8c7f4fbf37
21 changed files with 715 additions and 0 deletions
30
lua/plugins/mkdnflow.lua
Normal file
30
lua/plugins/mkdnflow.lua
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
return {
|
||||
{'jakewvincent/mkdnflow.nvim',
|
||||
name = 'mkdnflow',
|
||||
lazy = false,
|
||||
ext = 'md',
|
||||
config = function()
|
||||
require('mkdnflow').setup({
|
||||
mappings = {
|
||||
MkdnEnter = {{'n', 'v'}, '<CR>'},
|
||||
MkdnNewListItem = {'i', '<CR>'},
|
||||
},
|
||||
links = {
|
||||
name_is_source = true,
|
||||
conceal = true,
|
||||
style = "wiki",
|
||||
},
|
||||
modules = {
|
||||
yaml = true,
|
||||
cmp = true,
|
||||
tables = false,
|
||||
},
|
||||
perspective = {
|
||||
priority = 'first',
|
||||
root_tell = '.zk'
|
||||
}
|
||||
-- Config goes here; leave blank for defaults
|
||||
})
|
||||
end,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue