File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Orgmode supports various plugins to extend its functionality or make it more pre
15
15
- [[#aesthetics][Aestehtics]]
16
16
- [[#org-bulletsnvim][org-bullets.nvim]]
17
17
- [[#headlinesnvim][headlines.nvim]]
18
+ - [[#org-modernnvim][org-modern.nvim]]
18
19
- [[#other][Other]]
19
20
- [[#example-configuration][Example configuration]]
20
21
@@ -120,6 +121,28 @@ require('orgmode').setup()
120
121
require("headlines").setup()
121
122
#+END_SRC
122
123
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
+
123
146
** Other
124
147
:PROPERTIES:
125
148
:CUSTOM_ID: other
You can’t perform that action at this time.
0 commit comments