-
-
Notifications
You must be signed in to change notification settings - Fork 142
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
Org-roam functionality from within orgmode.nvim #66
Comments
I never used Roam or org-roam before. Can you give me brief explanation what are the key features of it? |
Would also love to see some features from org-roam implemented. One of the key things is the ability to create linked notes on demand and be able to view the network of linked files. Say I have a file
org-roam lets me create a second org file with metadata in the header to link back to
When I'm in the linked notes about eggs, I can also access a menu to view backlinks
|
Since org-roam is a plugin itself for Emacs Orgmode, same thing applies for this. I don't want to support anything in the core, that's a separate plugin in Emacs orgmode. I don't plan to built any support for this since I'm both not familiar with all the functionality, and I don't plan to use it. I'm open for suggestions on #26 for improvements on plugin infrastructure that would help someone else build the plugin. |
Just a bump to let you know that many people who are used to vim/nvim would be happy with this integration which would also let people who for example use Logseq be able to use their favourite editor (nvim) ! |
Another bump up. |
Hey, @megalithic I know this is not related to the issue, but I gotta ask if you managed to port all your notes from zk ? I've been using zk happily for a while and it's great. But I've been looking into using orgmode for notes. The problem is that now all my notes are managed with zk, with all the metadata like notes ID's and tags. So I'd like to ask if you ported your notes from zk and if so, how did you do it ? |
Does anyone have experience with org-roam? I would like to have a breakdown of the things that would be needed for someone to build this. I'm planning to start creating an API that would be callable by the plugins, and it would be helpful to know what would be useful for this. |
Man, to be honest, I've only used zk type things; I've wanted to give orgmode a try and more specifically org-roam to potentially take the place of zk-specific things. I have only read about org-roam and watched some vids by "System Crafters" on youtube about it. |
I have a general question to all of this. org-roam uses the org-id library which is part of the org-mode distribution, but it is a module which has to be enabled. Another module which i use is org-habit, also a module which has to be enabled. |
If they are part of the core in emacs orgmode, they can be in core here. So no, those are not counted as plugins. |
The roam philosophy in general contains atomized building blocks (pieces of text / code) that can be bound together in a graph. It is similar to how wikipedia works; an article may have many (back)links to other articles in the site, together form a knowledge graph. For roam to become a part of this project, I would reckon that it is essential to have a labeling/id system. The org roam mode itself in emacs has features such as
There are additional graph generating functions that can be called, but the "core" is rather small I believe. |
From what I see with a quick glance, the main thing nvim-orgmode lacks (especially if you want compatibility with other org-roam files) is a "custom protocol" handling for links. Is it possible to have a link like All the rest is (a lot of) work left for plugin implementers: very pragmatically, org-roam is just a big cache of
Otherwise, org-roam is mostly about updating the db whenever relevant (a file gets saved, or you just added a link or something), and then wrapping db queries in an API so the requests are easier to make. If you're curious, the db schema looks like that right now, it holds more data than just id/file path, but that's the idea. tl;dr: as long as it's possible to add/remove properties to file/headings, and to plug a custom link handler, I think replicating org-roam would be possible (long, but possible). |
I'm trying to clone org-roam for neovim, an ideal goal would be to have one to one feature parity with org-roam. But in beginning I'm only considering: adding nodes through When org-roam creates a new file node it uses I think these functions should be provided by this plugin. But returning elisp lists ?? ehhh |
check out https://github.com/nvim-neorg/neorg it has built in support for links, though not unique ids. personally I only write prose. I'd tried org-roam and doom emacs. but I had issues when working from different machines, (Intel Mac, Apple Silicon Macs, linux laptops) with neorg, I have to manually enter the note name, esc into normal mode, press enter while cursor is over the link name and it generates a new note. though there isn't a link, using your example, in eggs.org to go back to shopping.org. but again I'm a prose writer and have a hard enough time getting plugins to work. let alone figure out capture templates etc. on the plus side, I read somewhere that org and neorg are going to be natively supported in Neovim 0.10 |
I forked your repo, and also does some modify on org-roam-ui, the basic need can be met for myself : p https://github.com/CaryWill/org-roam-ui.nvim |
@kristijanhusak we can close this now that #702 is just about finished, right? |
@chipsenkbeil is the plugin ready? Let me know and we'll close this with the link to your repo. |
I believe it's ready 😄 Just updated the README and DOCS to reflect that the tag 0.1.0 of |
Time for a screencast of the plug-in usage! 😁💯 |
Should eventually show up at https://youtu.be/02lE-yGJWvc |
Awesome work @chipsenkbeil ! Looks great! |
Does this feature exist in Emacs orgmode core?
No
Orgmode link
So, first off, thank you @kristijanhusak for this wonderful plugin! I'm slowly getting into org-mode things, coming from zettelkasten using (https://github.com/mickael-menu/zk and https://github.com/megalithic/zk.nvim).
This isn't necessarily a "feature request" per-say but more of a survey of org-roam usage with orgmode.nvim. I've been looking at now I might be able to port all of my notes from zk land, or more specifically how note linking and related functionality might work here in orgmode.nvim.
Is this something you've ever had interest in? Do you normally just use long-form/long-lived org files? I'd love to hear from other users of this plug-in too.
Feature value
Parity with org-roam, within orgmode.nvim.
Additional context
No response
The text was updated successfully, but these errors were encountered: