File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments