Skip to content

Commit 13b5ff7

Browse files
docs: Add org-modern plugin to docs
1 parent 429409b commit 13b5ff7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/plugins.org

+23
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Orgmode supports various plugins to extend its functionality or make it more pre
1515
- [[#aesthetics][Aestehtics]]
1616
- [[#org-bulletsnvim][org-bullets.nvim]]
1717
- [[#headlinesnvim][headlines.nvim]]
18+
- [[#org-modernnvim][org-modern.nvim]]
1819
- [[#other][Other]]
1920
- [[#example-configuration][Example configuration]]
2021

@@ -120,6 +121,28 @@ require('orgmode').setup()
120121
require("headlines").setup()
121122
#+END_SRC
122123

124+
125+
*** org-modern.nvim
126+
:PROPERTIES:
127+
:CUSTOM_ID: org-modernnvim
128+
:END:
129+
Link: [[https://github.com/danilshvalov/org-modern.nvim][org-modern.nvim]]
130+
131+
Modern looking agenda prompt menu.
132+
#+begin_src lua
133+
local Menu = require("org-modern.menu")
134+
135+
require("orgmode").setup({
136+
ui = {
137+
menu = {
138+
handler = function(data)
139+
Menu:new():open(data)
140+
end,
141+
},
142+
},
143+
})
144+
#+end_src
145+
123146
** Other
124147
:PROPERTIES:
125148
:CUSTOM_ID: other

0 commit comments

Comments
 (0)