29 lines
921 B
Lua
29 lines
921 B
Lua
return {
|
|
{
|
|
'nvim-orgmode/orgmode',
|
|
event = 'VeryLazy',
|
|
ft = { 'org' },
|
|
config = function()
|
|
require('orgmode').setup {
|
|
org_agenda_files = '~/vault/projects/**/*',
|
|
org_default_notes_file = '~/vault/projects/refile.org',
|
|
}
|
|
end,
|
|
},
|
|
{
|
|
'renerocksai/telekasten.nvim',
|
|
dependencies = { 'nvim-telescope/telescope.nvim' },
|
|
},
|
|
{
|
|
{
|
|
'MeanderingProgrammer/render-markdown.nvim',
|
|
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
|
|
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
|
|
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
|
---@module 'render-markdown'
|
|
---@type render.md.UserConfig
|
|
opts = {},
|
|
},
|
|
},
|
|
}
|