Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Links for README.org + increase timeout for load_sync #782

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Orgmode clone written in Lua for Neovim 0.9.4+

[[#setup][Setup]] • [[/DOCS.md][Docs]] • [[#showcase][Showcase]] • [[#treesitter-info][Treesitter]] • [[#troubleshoot][Troubleshoot]] • [[#plugins][Plugins]] • [[CONTRIBUTING.md][Contributing]] • [[#thanks-to][Kudos]]
[[#setup][Setup]] • [[file:./DOCS.md][Docs]] • [[#showcase][Showcase]] • [[#treesitter-info][Treesitter]] • [[#troubleshoot][Troubleshoot]] • [[#plugins][Plugins]] • [[file:./CONTRIBUTING.md][Contributing]] • [[#thanks-to][Kudos]]

#+HTML:</div>

Expand Down Expand Up @@ -79,6 +79,9 @@ call dein#add('nvim-orgmode/orgmode')
#+HTML:</details>

*** Setup
:PROPERTIES:
:CUSTOM_ID: setup
:END:

Note that this setup is not needed for [[https://github.com/folke/lazy.nvim][lazy.nvim]]
since instructions above covers full setup
Expand Down Expand Up @@ -150,6 +153,9 @@ If you are new to Orgmode, see [[/DOCS.md#getting-started-with-orgmode][Getting
or a hands-on [[https://github.com/nvim-orgmode/orgmode/wiki/Getting-Started][tutorial]] in our wiki.

** Showcase
:PROPERTIES:
:CUSTOM_ID: showcase
:END:

*** Agenda

Expand All @@ -176,6 +182,9 @@ or a hands-on [[https://github.com/nvim-orgmode/orgmode/wiki/Getting-Started][tu
[[https://user-images.githubusercontent.com/1782860/123550227-e8605800-d76c-11eb-96f6-c0a677d562d4.gif]]

** Treesitter Info
:PROPERTIES:
:CUSTOM_ID: treesitter-info
:END:

The built-in treesitter parser is used for parsing the org files.

Expand All @@ -184,6 +193,9 @@ The built-in treesitter parser is used for parsing the org files.
- LaTex is still highlighted through syntax file

** Troubleshoot
:PROPERTIES:
:CUSTOM_ID: troubleshoot
:END:

*** Indentation is not working

Expand Down Expand Up @@ -329,6 +341,9 @@ More info on issue [[https://github.com/nvim-orgmode/orgmode/issues/281#issuecom
Link to detailed documentation: [[DOCS.md][DOCS]]

** Plugins
:PROPERTIES:
:CUSTOM_ID: plugins
:END:

- [[https://github.com/chipsenkbeil/org-roam.nvim][org-roam.nvim]] - Implementation of [[https://orgroam.com][Org-roam]] knowledge management system
- [[https://github.com/nvim-orgmode/telescope-orgmode.nvim][telescope-orgmode.nvim]] - Telescope extension to find headlines, refile and insert links
Expand Down Expand Up @@ -381,6 +396,9 @@ Hosted documentation is on: [[https://nvim-orgmode.github.io/][https://nvim-orgm
- :white_square_button: Support evaluating code blocks

** Thanks to
:PROPERTIES:
:CUSTOM_ID: thanks-to
:END:

- [[https://github.com/dhruvasagar][@dhruvasagar]] and his [[https://github.com/dhruvasagar/vim-dotoo][vim-dotoo]] plugin
that got me started using orgmode. Without him this plugin would not happen.
Expand Down
2 changes: 1 addition & 1 deletion lua/orgmode/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function Org:init()
:new({
paths = require('orgmode.config').org_agenda_files,
})
:load_sync()
:load_sync(true, 20000)
self.agenda = require('orgmode.agenda'):new({
files = self.files,
})
Expand Down
Loading