Replies: 1 comment 4 replies
-
Hi @c-c-k. I'll try to answer some of your questions based on my experience and workflow. You can enable concealment of links using mkdnflow.nvim in the config. Depends on the platform. If you are using android then I may recommend Obsidian (proprietary) or Markor (open source). You can sync everything across your devices using syncthing. If you are using iOS then I express my sincere condolences; iOS ecosystem is pretty bad in terms of flexibility and idk any apps. There is Joplin but it uses its own special format for storing notes. Actually you might try using Obsidian for iOS. Regarding navigation I don't really use this type of web of links across notes. I just use my file manager. But relative paths is the optimal thing if you want your notes to be portable across systems. sorry, idk I hope this was helpful. Feel free to ask follow up questions. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'm trying to start/restart using a notebook/personal knowledge base/zettelkasten/second brain/etc..
I've looked through the many related vim/nvim plugins, got a bit lost and overwhelmed, started to write something of my own, got even more lost and overwhelmed, looked at some of the related plugins again and decided that mkdnflow is probably the closest to what I want.
However there are some basic note-taking workflow issues that I can't get my head around and was hoping more experienced note-takers could give me their insights on.
Reference Links
Due to vim/nvim's long standing issues with text concealment, reference style links seem like the best option for vim/nvim as they don't induce much visual clatter when left unconcealed, however as far as I've noticed, none of the existing plugins offer the possibility of using them as the preferred add-link function/command.
So I was wondering:
[...](...)
) or wiki ([[...|...]]
) links isn't actually that bad after using them for a while?[...]: ...
) at the end of the markdown file?Viewing/editing notes on a mobile & viewing notes with images and the like
Images, math formulas, graphs, charts, etc.. are things that as far as I know vim/nvim can't show/render inline.
While working on a note in vim/nvim using one of the markdown preview plugins seems like a good answer.
But what would be a good solution for occasionally viewing/editing the notes on a mobile phone.
Link path destinations
When following a link with an absolute path (
/topic/sub-topic/note.md
), Github and vimwiki treat the root dir (/
) as the root dir of the notebook/wiki/repository.In my own attempted plugin I've made it so that when creating a link with a relative input path (
../another-sub-topic/other-note.md
) the input link would be interpreted relative to the current note, but the actual link destination inserted in the note would be the absolute path within the notebook (/topic/another-sub-topic/other-note.md
).This seemed a good idea to me because it would allow to clearly see the link destinations later on and would make refactoring the notebook easier.
Inter-notebook links
Vimwiki allows to create links from one wiki notebook to another with a
vw-anotherwiki:/path/to/note
URI.Anyway, sorry for the long post, thanks in advance for any insights,
c-c-k.
Beta Was this translation helpful? Give feedback.
All reactions