File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 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
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()
120121require("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
You can’t perform that action at this time.
0 commit comments