Skip to content

Commit 76669f8

Browse files
committed
Addedd Orgmode and Render Markdown plugins
1 parent 9ac9650 commit 76669f8

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

lua/custom/plugins/orgmode.lua

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
return {
2+
{
3+
'nvim-orgmode/orgmode',
4+
event = 'VeryLazy',
5+
filetype = { 'org' },
6+
config = function()
7+
-- Setup orgmode
8+
require('orgmode').setup {
9+
org_agenda_files = '~/orgfiles/**/*',
10+
org_default_notes_file = '~/orgfiles/refile.org',
11+
}
12+
13+
-- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
14+
-- add ~org~ to ignore_install
15+
-- require('nvim-treesitter.configs').setup({
16+
-- ensure_installed = 'all',
17+
-- ignore_install = { 'org' },
18+
-- })
19+
end,
20+
},
21+
}
22+
-- vim: ts=2 sts=2 sw=2 et
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
return {
2+
{
3+
'MeanderingProgrammer/render-markdown.nvim',
4+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
5+
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
6+
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
7+
---@module 'render-markdown'
8+
---@type render.md.UserConfig
9+
opts = {},
10+
},
11+
}
12+
-- vim: ts=2 sts=2 sw=2 et

0 commit comments

Comments
 (0)