initial commit

This commit is contained in:
KRLH 2025-08-21 11:18:50 -05:00
commit 8c7f4fbf37
21 changed files with 715 additions and 0 deletions

30
lua/plugins/mkdnflow.lua Normal file
View 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,
}
}