I came across this video at random, I'd no idea taking notes has become so involved! It seems you could lose yourself for months honing the perfect note taking environment, the procrastination potential is enormous!! 🤣
That is very true but one thing often overlooked about obsidian is it can actually be used in a very sloppy way. Just slop ideas down anywhere with some tags and you can easily search it later. People try to over complicate things
@@jerbear7952 this is actually a great take which I agree with. Just note the small conflict - if you have tags, sure it’ll work, same if you have links, or a structure. One is enough. But given our “sloppy” nature 😉 it’s best if you have a few layers to make sure you can still be lazy by finding your notes in the future!
I've been working on setting up my environment to get it like this, and it really is beautiful and low friction. High friction upfront. I think @devopstoolbox ' s workshop will reduce the time required to get it setup though
@@jerbear7952 that's what I am saying. I plan to use it as a tool to take notes from other interests I am trying to understand better. It seems like some people make it their full time job to edit their configurations while probably never studying any notes. Even learning vim needs it's own notebook.
Your content is truly condensed to pure gold! I really watched ALL your videos now. Please DO NOT STOP making dev related content! Cheers from Germany.
Great video! Ive been using obsidian for a while, but just started with Neovim and NvChad. I look forward to getting nvim and obsidian working together.
I have been following your channel since a while, and I am a long term neovim user. I started using obsidian this Christmas and somehow got the vimrc plugin to work tonight. And BOOM you released this video 4hrs ago. P.S. keep making this great content. Love from India
I've been using workflowy for note taking, ever since I discovered it. I love the lists of lists concept. I never have to wonder where I stored a particular note, since there is only 1 tree. That said, as soon as I'm sitting at a computer, I love doing everything inside neovim. So I'll have to give Obsidian a try.
would appreciate some thoughts on how to not to or how to un mess your vault. I started Obsidian very quickly, and slowly realizing what mess I've made in my vault. Would be very helpful to see your organization. The why and how you organize your file tree and link vs tags
Funny enough, since I couldn’t pack this into a video, I made a workshop. It’s paid content but I put a lot of work in it and you’re welcome to check it out and ask questions if you have any: learn.omerxx.com
Nobody talks about dendron anymore. In my opinion, it’s superior to obsidian…runs as a vscode plugin or you can run it in the command line and integrate with vim…doesn’t have the same plugin support as obsidian, but if you use it in vscode you can combine it with any vscode extension, meaning it’s fairly limitlessly customizable, but has the same basic frontmatter setup as Obsidian. I tried obsidian and ended up putting my obsidian vault in my dendron vault and using dendron for writing, obsidian for publishing… I’m not a neovim user yet, but I suspect it can be with some effort be basically as customizable in vim by calling it in the command line as well and combining it with neovim plugins. Now…the real stumbling block seems to be…I keep reading that physically writing notes is much better for retention, so I might need to re-invent my process starting with a notebook and transferring to digital to refine and review. Basically dev, testing and publishing with notebook > dendron > obsidian.
I love the obsidian plugin but for myself I find a leaner way. Just use base nvim standard plugins (telescope, lazy, treesitter, lsps, ... you get the idea) and use Marksman lsp, which provides with most of the mentioned functionalities. Only thing I am missing in my setup is getting a list of backlinks. Great video as always :D
Nice! And yes, the plugin adds mainly that functionality. But having the power of using vim on the same workspace (bc it’s just Md) is so refreshing coming from notion…
You can easily write a small python script to scroll through all the MD files in a directory and append/update a list of backlinks at the top of every file
@sergioquijanorey7426 I, too, like a leaner approach, so I’ve been using vim with the ‘zk’ tool, which includes ‘zk-nvim’, a nvim plugin that uses the its own ‘zk’ lsp to provide linking-including backlinking. Combine that with a markdown lsp and it’s a complete package. With ‘zk’ you can build templates, etc .. and with the ‘zk-nvim’ plugin’s API, if you know Lua, you can build some really neat workflows in vim. As an example, I’m a manager, and I take LOTS of notes for the 20 people I hold one on ones with. Each week, I invoke my custom command, which opens a new meeting note. With my integration, telescope opens and prompts me for a meeting name. It presents all unique meetings from the past, so I’ll effectively see one item for each person in the list along with one item for any other recurring meeting (staff meeting). Then I select the person, a template opens with the title already set to the person I’m meeting with. So, creating a new meeting note, is one binding to launch my custom ZkMeeting command, and only the number of key presses required to fuzzy search a name. It’s so fast. Then, I have another integration I wrote as I wanted to be able to quickly reference previous notes for that person. So I have another custom command to pop open in telescope all of the past meetings for that person with a preview, so I can quickly review my last week notes or older notes when talking to them this week. It’s the best note taking system I’ve had for years.
I watched this video once. I'll watch again to glean as much as I can, but I was wondering if you had a step by step set up guide for this wonderful looking combination of NeoVim and Obsidian?
Thank you! I don't have a dedicated guide but my entire configuration is open at dotfiles.omerxx.com. If there are specifics that interest you feel free to come back with questions and I'll do my best to help!
It was too much to pack into a video so I've built a dedicated course last year, you're welcome to check it out: learn.omerxx.com/courses/second-brain-neovim
@@devopstoolbox I booked the workshop and i was super super valuable to me. I sent you a question via e-mail regarding syntax highlighting because i cant make it work :S
Thank you for the video and dotfiles to get started. I am not getting the checkbox behavior, open bracket to create links to other files and different colors for #,##,###, etc. Can you think of anything I may be missing? The Obsidian plugin is definitely running, because I have the commands available and they seem to be working to create new notes, etc. Thanks again!
Do you have cmp installed? If you do, the plugin integrates with cmp and triggers it, you can change the setting for how many characters actually trigger the completion, try opening two brackets and type two chars and see what happens
Something about TeX, and with it LaTeX, which you'll see if you read Knuth's book TeX the program, is how careful he was in designing TeX so that any compliant build of TeX on any hardware will generate _exactly_ the same DVI output as any other. Things like using fixed point arithmetic with smallish integers to ensure that problems with different floating point formats wasn't a problem, and while he originally wrote it in Pascal, it deliberately used no advanced features of the language so as to make it relatively straightfoward to port to a non-Pascal language like C. Typst, on the other hand, I doubt is anywhere near religious about reproducible results as TeX. The thing is, I can take LaTeX I wrote in my postgrad days 20 years ago, and it compiles exactly the same today as it did back then. I can trust that LaTeX in 20 years time will still do the same. For scientific papers and such I think that is a very important thing. As for notes: you can embed simple LaTeX formulae. And if you want typeset results, LaTeX is a good way to go. But for quickly writing notes, often Markdown with \(formulae\) is much quicker to write. And conventions like [[double brackets]] for hyperlinks is nice. Obsidian is basically close to a personal wiki.
My setup is pretty much combined with syncthing for syncronization: all markdown notes, live grep within notes, and using "gf" or gF if there's a line number to go to related files since that's already in vim and neovim. I could probably improve that with a tree view. On mobile, termux + neovim works if it's in internal storage.. working on moving it from external storage. For now on mobile, markor / neutrinote is what I use for viewing markdown, but I will look into Obsidean and logseq and the plugin showcased. Looks like a useful plugin.
An interesting stack! TBH while the mobile version of obsidian is great, I feel that icloud is slowing it down. If I had a faster alternative I'd consider it. Sometimes you just want to take a quick note without thinking too much or waiting for a platform. That's one of the key concepts in the second brain book - remove friction
@@devopstoolboxI don't know the details of the secondbrain methodology but if you want a quick portable inbox I suggest you reduce your requirements to simple text capture. Then I'm sure you can find a simple hack; some automation on your phone that takes a free text field and pushes it via folder sync/api/mail/... to an inbox on your PC for later processing. To me , this is so infrequent that I just take a not in my MS Todo app on my phone and then copy it when on PC.
The one thing I do love about Notion is the databases and expression columns, but they do make me think I should instead just use a real database and sprocs or python or something, but I also,love how clean notion looks. It’s just so slow, and yeah, insular.
100%! Inline DBs in notion are killer! You do have “loom” that you can use in obsidian which is super nice. Notion are amazing with visuals but it’s just too much of a “product”. You don’t have control, it’s slow, they dictate how you access, and moving away to another system puts you in the mercy of their export capabilities. Not to mention the safety of my notes when they’re stored on my machine / cloud storage of my preference when using something like obsidian
@@devopstoolboxnail on the head with notion. You can make it look super sexy but to get to that point is a pain in the ass. Then all the vendor lockin afterwards makes it worse.
Hey man, loving your videos. I'm facing this weird error whenever I open nvim out of the SecondBrain folder I have set in my iCloud directory as you have: ``` Error 12:56:02 notify.error Obsidian.nvim 'Users/renatillas/Library/Mobile Documents/iCloud~md~obsidian/Documents/SecondBrain/Templates' is not a valid directory for templates ``` The Templates folder is in my system with some example.md created there. Do you know what may be happening?
Thanks! Not 100% sure but make sure you have the templates dir configured properly in the plugin, here’s mine: github.com/omerxx/dotfiles/blob/master/nvim/lua/plugins/obsidian.lua#L36
Something bugging me about obsidian isn't it doesn't support anchor links when you export to pdf. Only external links work. So far, it's the best thing I've found though for exporting pdfs with consistent style and code snippets.
I've being using notion, but latelety i have beeb a bit upset with the "input lag" and the time small actions take in this platform (even on a beefy laptop). I'd probabky give this a try.
your nvim setup is just beautiful! I am an avid user of Obsidian, and I do all my work in vim (now migrating my workflow to nvim). One thing I really love about obsidian is the canvas core plugin. It lays out my thoughts best. So unfortunately, I can't 100% write within nvim. Maybe with a nvim window and a canvas window I can manage that, but obsidian itself is not too bad when you have a vim keybinding.
What a great video! Please, make a setup video: how did you configure all of this? Also, it would be great for non-Apple users on how to sync notes between devices (mainly Linux + Android).
Thank you! Are you referring to setting the sync via iCloud? Because that’s really the one bit you don’t see, the rest is in the video and pretty straight forward - after the plugin is installed it needs a workspace and that’s about it. About other sync methods - IIRC it works great with others like google drive so should be similar although I haven’t checked. Give it a go and let me know? The git integration will of course be similar
i love neorg and the dev of neorg is so chill and a nice guy i mean he is great. i just feel nvim community doesn't have a good markdown concealer if you feel it and think creating one it will be nice open source project i would love to contribute in that
True! The dude is awesome. He also made a nice "getting to know vim" series recently. But the fact that I can't access my files with my mobile and being locked to a rather niche format was problematic for me. I still use it for single-project notes from time to time
@@devopstoolbox don't know why youtube keeps deleting my replies I guess it is because of a url m putting Try calendar.nvim from itchyny It will require gcp project with api access to calender and taska but then Google tasks and Google Calendar works nicely in neovim ......
@@devopstoolboxI'm not so worried about writing my notes from any device but having read access from my phone is essential. Have you considered generating a static website using hugo or pandoc and syncing it using syncthing or GDrive/Dropbox? I know I have :-) Just can't get it to work yet.
i attendded the workshop to obsidian of yours ..i'm facing issue on how to open the searched md file using neovim in the windows with out using mouse ....skhd is for mac ..i need the alternative for linux ..i'm currently using WSL (windows subsystem for linux)
I wanted to use obsidian but I didn't want to use a separate application to take notes that didn't have the vim motions. I'm using vimwiki but I'll give this a go now. Thank you very much.🙏💯
To start off - it's very much doable! Modern terminals present images easily. I don't care about it so I opted for a representation of an image that I know is there, I don't usually include images so that's not a problem for me.
I gotta be honest - I would LOVE to have a device purely for note taking. Can’t justify the expense and using a paper notebook (the one in the thumbnail)
@@devopstoolbox Oh! I'm so used to my tmux status bar being on the bottom I didn't notice it. I still need to go back and redo my tmux config some weekend. I downloaded someone else's ages ago and have never gone through and set it up myself. I just finished fixing that same mistake with neovim. I'll check your tmux video.
@devopstoolbox, you're the one that convinced me to invest in a neorg setup ... now you're telling me you moved to obsidian? Aaargh! Kidding aside: I left Notion for nvim+neorg 5 months ago and I'm happy I did. With time and practice, my assumptions about what I needed have evolved; I'm as starting to be really interested in atomic notes (zettelkasten inspired) and Obsidian seems to have an awesome setup for that. Also: the sync with android app is a massive feature. As someone else remarked in the comments already: my only gripe is that it's not a terminal app. Believe it or not but I actually prefer the look and feel of neorg in the terminal. More importantly, I will have to make sure I can make my Obsidian flow as quick and keyboard driven as nvim which is just incredible at that point. On the plus side: the obsidian configuration community looks massive. It completely dwarfs what's available for Neorg tweaking.
Haha! I mentioned in the video I believe- I still use Neorg from time to time for specific project needs but to build a system like a second brain it requires more firepower. With the Neovim plugin I think it makes it as good if not better than Neorg given the visuals and ability to combine Neovim goodies when writing. I even created a course going through the concepts and configs: learn.omerxx.com That said - these things are so personal, there’s really no one size fits all type of solution. But if you’re sold on Neovim and quick frictionless note taking and like having control sync, mobile control etc, I think Neovim and obsidian are really the holy grail 😉😉
Hi, great video about the topic! What terminal and color theme do you use in the video? Is that MacOS or Linux? I want to replicate that frosted glass look in my setup...
The original study was done on 2008 but for some reason the university removed the paper itself from their website. There’s lots of news and data around it: www.zdnet.com/article/americans-consume-100000-words-of-information-each-day-study-says/ www.blog.askwonder.com/blog/information-data-media-consumed-in-day-average?format=amp There was a more recent study, I’ll get the book references this week and try to get it for you
Great video @Devops Toolbox, I was wondering if you have been able to visualize images directly nvim while using obsidian plugin. I know it's possible as quarto distro does it, but can't get to configure image.nvim to do it. Please let me know if you got the hack! thanks and continue with the great content!
Great video! I tried installing this plugin within my NvChad config and, sadly, I couldn't make use og the ObsidianOpen command since I use Sway which uses Wayland; if someone knows how to work this out that would really help me. Oh, and also I use multiple Vaults in Obsidian, but I don't know how to swap between them inside nvim. When I run ObsidianWorkspace it only prints the same Vault, even if I'm writing in a note from another vault. Thanks and sorry for the long testament!
Install the obsidian git community plugin and set the snapshot to run every 60 minutes. You can find the plugin by browsing from within obsidian but just in case your can find it here: github.com/denolehov/obsidian-git
Not really TBH. Does it offer the same suit of features making it accessible via Neovim, sync, Md, and the rest? Always interested in trying new stuff but I fear my second brain is too busy with finding a home rather than functioning as a notebook 😅
@@devopstoolbox logseq is like obsidian with more stuff out of the box, like task management and note queries. I don't know about using it with neovim, some dude made LSP(logseqlsp), you can try to make it work. Logseq has sync feature like obsidian sync, but app is file-based so you can sync with whatever you want. Also logseq has sick pdf annotation tool, i can't find obsidian plugins that are so good for pdf annotation
@@devopstoolbox I don't think it can, btw every single md implementation is custom, so even tho they are md not necessarily100% compatible, and they way logseq works it isn't compatible in fundamental ways with your way of using md probably.
@@devopstoolbox In the case of logseq and the way it structures things I don't think this applies, which was the original question. I haven't researched this in depth tho, speaking from memory. I've been digging the rabbit hole for a while now, orgmode, asciidoc, markdoc, mdx... way too many options, still none that I fully like, I don't think markdown is enough nowadays, plus I don't like it's syntax, but it's totally fine. Such an interesting topic.
I prefer Joplin, but this is pretty cool. I rotate between editors based on mood, one of which is NeoVim. Can't autocomplete note links though (not that I know of anyway), but ... meh. Anyway. Great demo.
So, this `[[foo#^Bar]]` works, but only via obsidian's UI. When I follow links from other notes I'm getting to the top of the note always. I'll explore this a little bit
First off what a fantastic video! I am definitely going to use this plugin since I love obsidian, but always prefer to edit text in neovim so this is perfect for me :) Quick question, how do you get it so those check mark boxes are rendered like that? For me i can't even see the - [ ] i just see nothing but what text is next to the checkbox, let alone what you have which is way cooler
Thank you! I guess this is having nerd font installed and a terminal that supports them (I run wezterm). You’re also welcome to check out my config at dotfiles.omerxx.com if I missed anything!
@@devopstoolbox Thanks for this! Was looking for your config. Even with treesitter and a load of other vim plugins, I am missing some nice features displayed in your video.
Great question! The workshop goes deeper into all the principles in the book like PARA and CODE, it includes my structure step-by-step and the way I’m using templates (with the templates themselves) and more things that are hard to pack into a short YT video
I used Obsidian for a bit. Then wrote my own wiki that uses markdown with automatic converting WikiWord's to links, like the original WikiWikiWeb, with custom code blocks repurposed as a general formatting tool (basically if I and a method to the renderer class, that takes the contents of the fenced block and spews out the appropriate HTML). It has versioning (for authenticated users, along with editing and a few other things), though I rarely need to look through previous versions of pages (but it is a feature of a typical Wiki). I have a few of them, one publicly viewable for notes I'm happy to share publicly, and the result suits me fine: there isn't the sync'ing issue that one gets with Obsidian as it just runs in a browser. Moreover, knowing the code, I can, and often do, just plumb in features where I want them. Backend is vanilla PHP, frontend vanilla Javascript. I can copy/paste between vim for more detailed edits, which I'm fine with.
Everything sounds perfect expect for the last part. Funny as it may sound, copy pasting in and out of editors is the small friction that’s definitely breaking my habit in the long run and why I’d give up on the idea 🤷
Your videos are always amazing. I love Obsidian, but I discovered Capacities. So, I'm trying to get use to it. Looks pretty solid. When did you change to the Moonlander? I noticed you started using it since few videos ago. Do you still using your HHKB? How do you feel about the change? Cheers!
I did switch just a few months back when you noticed :) the hhkb is unmatched in typing experience, the Moonlander is amazing in the fact it’s split, orthilinear and configurable with layers macros etc. so I’m not going back but if I could put the topre feel ok the moon lander it’d be the PERFECT KB
I was shocked that someone who used nvim would use notion, but then you said "obsidian has vim motions so you'll feel right at home" and wow, guess we get very different things out of vim. There's like....wayyy more that I use from vim than that.
Vim motions are incredible and adopted by so many tools, as a vim user I’m always on the lookout for solutions that have integrated or at least make the option accessible enough
@@devopstoolbox He was telling you that vim motions alone weren't sufficient for him and he wouldn't feel home just because a tool had them as an option.
@@heroe1486 sure I get that (that’s way most of the video is about actually using Neovim as the note taker) but to me, having vim motions in the UI itself makes a world of difference
@@x0rZ15t I heard the not open source claim a lot, and I understand your point, but other than that it’s pretty much free and you own your data. If you don’t sync through obsidian I’m pretty sure they can’t do anything.
No problem with images on Obsidian! Images need your terminal to be able to render them but if you *really* want you can make it work. When I have a lot of visuals I just use obsidians ui
@@devopstoolbox thank you , just one more question ...if we move to another page swiftly using neovinm and obsidian (working as renderer) is open in the vertical window...does that action of the moving to another page will be reflected in the obsidian simeltaneous in real time ?
Thank you for this video. This has inspired me to use obsidian with emacs using the obsidian.el package. I've been using the two separately and found that obsidian's vim emulation was ok but not perfect.
Yep, mentioned in the beginning of the video! Moved to obsidian for my second brain (from notion). Neorg was, and still is sometimes my engineering notes taking format when working inside a git repo.
When you turn on vim bindings you should see motions in normal mode. If you’re referring to the key strokes on the black box in the video though, this would be Keycastr
Obsidian looks nice. Does it support latex mathematical expressions? It is very important for anyone who takes notes and works in STEM. Also does it support instant rendering / previewing of latex math expressions in neovim?
I got the Obsidian Tasks plugin working with calendar today. It wasn't hard to do, the docs are great - it just meant a reorganisation of some of my notes. Anyway, that is incredibly powerful. Obsidian is incredible.
@@devopstoolbox Oh and there's also a really good Kanban plugin for Obsidian. My only gripe with Obsidian is that it's not a terminal app, but I strongly suspect that that's just me being a snob 🤔😝
Note taking realism.. Oh god how will I pay my bills.. this chapter is 100 pages, I need the toilet for 15 minutes, I should do the dishes, my note app is open... I will configure obsidian.. open 5 links, workout some win, configure some file, reminds me of vim, open vim, open obsidian, not sure what to do... settle on osx notes, Zotero or iA writer, go to bed.
Just one little thing, if you are an engineer Who has no knowledge of LATEX Code and Wants to add complex formulas [ usually calculus ] to his notes seamlessly, you would shit Bricks and jump though hoops to get anything done with obsidian. I understand that having your notes linked visually and spatially can be very useful but for mathematicians, physicists, Mechanical & Electrical Engineers who need this the most, but do not possess LATEX skills OBSIDIAN is USELESS, it just does not come any anywhere close to writing on paper.
Yep, makes sense. I understand it’s not for everyone, as someone who works in software and trying to build a second brain to support all aspects of life including work, it suits me very well. For my sketches and diagrams I have a plugin that integrates Excalidraw. Not doing anything complicated like you as far as visualization go. As with every tool - there isn’t one size fits all (surely obsidian doesn’t fit everyone’s style). YMMV
I spoke about the process and how I can use vimrc for the motions, and when I want the full Neovim environment I use the plugin which is also covered, but honestly it’s docs are doing much better job than me at explaining. If this is about my file structure you check out learn.omerxx.com But I’m not sure that was it
The second brain can only be good if the first brain is in working condition
😂😂😂
Where were you when I wrote the script??
😆😂🤣😅😭
That's the rub isn't it :)
Are you suggesting taking amphetamines?
Who are you calling senile?😊
I came across this video at random, I'd no idea taking notes has become so involved! It seems you could lose yourself for months honing the perfect note taking environment, the procrastination potential is enormous!! 🤣
If I’m very honest this is what this channel is all about 😅
That is very true but one thing often overlooked about obsidian is it can actually be used in a very sloppy way. Just slop ideas down anywhere with some tags and you can easily search it later. People try to over complicate things
@@jerbear7952 this is actually a great take which I agree with. Just note the small conflict - if you have tags, sure it’ll work, same if you have links, or a structure. One is enough. But given our “sloppy” nature 😉 it’s best if you have a few layers to make sure you can still be lazy by finding your notes in the future!
I've been working on setting up my environment to get it like this, and it really is beautiful and low friction. High friction upfront. I think @devopstoolbox ' s workshop will reduce the time required to get it setup though
@@jerbear7952 that's what I am saying. I plan to use it as a tool to take notes from other interests I am trying to understand better. It seems like some people make it their full time job to edit their configurations while probably never studying any notes. Even learning vim needs it's own notebook.
Your content is truly condensed to pure gold! I really watched ALL your videos now. Please DO NOT STOP making dev related content! Cheers from Germany.
Thank you so much!! 🫶
Great video! Ive been using obsidian for a while, but just started with Neovim and NvChad. I look forward to getting nvim and obsidian working together.
I love your UI / System Design. Would love a video going over how to set it up and what you use
Just for you 😉
th-cam.com/video/yCgieVu13VQ/w-d-xo.html
I have been following your channel since a while, and I am a long term neovim user.
I started using obsidian this Christmas and somehow got the vimrc plugin to work tonight.
And BOOM you released this video 4hrs ago.
P.S. keep making this great content. Love from India
Oh man! Incredible!
Thank you so much for the kind words!
Feel free to come back if you want to discuss things 🙏🏽
Thanks for sharing another amazing video. As a user of Obsidian and Neovim, this tutorial proves "1+1>2", and it's pure gold to me.
I've been using workflowy for note taking, ever since I discovered it. I love the lists of lists concept. I never have to wonder where I stored a particular note, since there is only 1 tree.
That said, as soon as I'm sitting at a computer, I love doing everything inside neovim. So I'll have to give Obsidian a try.
would appreciate some thoughts on how to not to or how to un mess your vault.
I started Obsidian very quickly, and slowly realizing what mess I've made in my vault. Would be very helpful to see your organization. The why and how you organize your file tree and link vs tags
Funny enough, since I couldn’t pack this into a video, I made a workshop. It’s paid content but I put a lot of work in it and you’re welcome to check it out and ask questions if you have any:
learn.omerxx.com
Nobody talks about dendron anymore. In my opinion, it’s superior to obsidian…runs as a vscode plugin or you can run it in the command line and integrate with vim…doesn’t have the same plugin support as obsidian, but if you use it in vscode you can combine it with any vscode extension, meaning it’s fairly limitlessly customizable, but has the same basic frontmatter setup as Obsidian.
I tried obsidian and ended up putting my obsidian vault in my dendron vault and using dendron for writing, obsidian for publishing…
I’m not a neovim user yet, but I suspect it can be with some effort be basically as customizable in vim by calling it in the command line as well and combining it with neovim plugins.
Now…the real stumbling block seems to be…I keep reading that physically writing notes is much better for retention, so I might need to re-invent my process starting with a notebook and transferring to digital to refine and review. Basically dev, testing and publishing with notebook > dendron > obsidian.
What terminal emulator is this, it looks so beautiful!
It's Wezterm, but keep in mind there's video editing involved :)
I love the obsidian plugin but for myself I find a leaner way. Just use base nvim standard plugins (telescope, lazy, treesitter, lsps, ... you get the idea) and use Marksman lsp, which provides with most of the mentioned functionalities. Only thing I am missing in my setup is getting a list of backlinks.
Great video as always :D
Nice! And yes, the plugin adds mainly that functionality. But having the power of using vim on the same workspace (bc it’s just Md) is so refreshing coming from notion…
Oh yes, for sure! And having Obsidian for reading / editing notes on the phone is perfect @@devopstoolbox
You can easily write a small python script to scroll through all the MD files in a directory and append/update a list of backlinks at the top of every file
@@sergioquijanorey7426 i'm guessing you use obsidian sync for that
@sergioquijanorey7426 I, too, like a leaner approach, so I’ve been using vim with the ‘zk’ tool, which includes ‘zk-nvim’, a nvim plugin that uses the its own ‘zk’ lsp to provide linking-including backlinking. Combine that with a markdown lsp and it’s a complete package. With ‘zk’ you can build templates, etc .. and with the ‘zk-nvim’ plugin’s API, if you know Lua, you can build some really neat workflows in vim.
As an example, I’m a manager, and I take LOTS of notes for the 20 people I hold one on ones with. Each week, I invoke my custom command, which opens a new meeting note. With my integration, telescope opens and prompts me for a meeting name. It presents all unique meetings from the past, so I’ll effectively see one item for each person in the list along with one item for any other recurring meeting (staff meeting). Then I select the person, a template opens with the title already set to the person I’m meeting with. So, creating a new meeting note, is one binding to launch my custom ZkMeeting command, and only the number of key presses required to fuzzy search a name. It’s so fast.
Then, I have another integration I wrote as I wanted to be able to quickly reference previous notes for that person. So I have another custom command to pop open in telescope all of the past meetings for that person with a preview, so I can quickly review my last week notes or older notes when talking to them this week. It’s the best note taking system I’ve had for years.
I watched this video once. I'll watch again to glean as much as I can, but I was wondering if you had a step by step set up guide for this wonderful looking combination of NeoVim and Obsidian?
Thank you!
I don't have a dedicated guide but my entire configuration is open at dotfiles.omerxx.com.
If there are specifics that interest you feel free to come back with questions and I'll do my best to help!
Is there any guide on how to setup obsidian?
I'd love to give it a try and evaluating the benefits over using notion
It was too much to pack into a video so I've built a dedicated course last year, you're welcome to check it out: learn.omerxx.com/courses/second-brain-neovim
@@devopstoolbox I booked the workshop and i was super super valuable to me. I sent you a question via e-mail regarding syntax highlighting because i cant make it work :S
@@dominiqueehrlich1668 I’ll take a look!
Looks a bit like Freemind/Freeplane that I started using many years ago. Only think it didn't have was vim plugin. But used XML for storage.
what is the search plugin you use in 6:15 and the command line one on 6:25? I like the UI look, would appreciate it:)
Both are noice.nvim by folke, which rerenders the command line :)
Thank you for the video and dotfiles to get started. I am not getting the checkbox behavior, open bracket to create links to other files and different colors for #,##,###, etc. Can you think of anything I may be missing? The Obsidian plugin is definitely running, because I have the commands available and they seem to be working to create new notes, etc. Thanks again!
Do you have cmp installed? If you do, the plugin integrates with cmp and triggers it, you can change the setting for how many characters actually trigger the completion, try opening two brackets and type two chars and see what happens
6:20 What's the plugin to get such a beautiful Cmdline with syntax highlighting?
This is github.com/folke/noice.nvim!
@@devopstoolbox Thank you, wow that plugin is more than I anticipated :)
have you ever tried langs like Latex or even better Typst ?
I feel it gives full control since it is in fact a programming language
Nope, I've been asked about it a few times here in the comments but can't say anything about it (yet)
Something about TeX, and with it LaTeX, which you'll see if you read Knuth's book TeX the program, is how careful he was in designing TeX so that any compliant build of TeX on any hardware will generate _exactly_ the same DVI output as any other. Things like using fixed point arithmetic with smallish integers to ensure that problems with different floating point formats wasn't a problem, and while he originally wrote it in Pascal, it deliberately used no advanced features of the language so as to make it relatively straightfoward to port to a non-Pascal language like C.
Typst, on the other hand, I doubt is anywhere near religious about reproducible results as TeX. The thing is, I can take LaTeX I wrote in my postgrad days 20 years ago, and it compiles exactly the same today as it did back then. I can trust that LaTeX in 20 years time will still do the same. For scientific papers and such I think that is a very important thing.
As for notes: you can embed simple LaTeX formulae. And if you want typeset results, LaTeX is a good way to go. But for quickly writing notes, often Markdown with \(formulae\) is much quicker to write. And conventions like [[double brackets]] for hyperlinks is nice. Obsidian is basically close to a personal wiki.
My setup is pretty much combined with syncthing for syncronization: all markdown notes, live grep within notes, and using "gf" or gF if there's a line number to go to related files since that's already in vim and neovim. I could probably improve that with a tree view. On mobile, termux + neovim works if it's in internal storage.. working on moving it from external storage. For now on mobile, markor / neutrinote is what I use for viewing markdown, but I will look into Obsidean and logseq and the plugin showcased. Looks like a useful plugin.
An interesting stack! TBH while the mobile version of obsidian is great, I feel that icloud is slowing it down. If I had a faster alternative I'd consider it. Sometimes you just want to take a quick note without thinking too much or waiting for a platform. That's one of the key concepts in the second brain book - remove friction
@@devopstoolboxI don't know the details of the secondbrain methodology but if you want a quick portable inbox I suggest you reduce your requirements to simple text capture. Then I'm sure you can find a simple hack; some automation on your phone that takes a free text field and pushes it via folder sync/api/mail/... to an inbox on your PC for later processing. To me , this is so infrequent that I just take a not in my MS Todo app on my phone and then copy it when on PC.
@@d3lirious this is exactly what I was thinking
The one thing I do love about Notion is the databases and expression columns, but they do make me think I should instead just use a real database and sprocs or python or something, but I also,love how clean notion looks. It’s just so slow, and yeah, insular.
100%! Inline DBs in notion are killer! You do have “loom” that you can use in obsidian which is super nice.
Notion are amazing with visuals but it’s just too much of a “product”. You don’t have control, it’s slow, they dictate how you access, and moving away to another system puts you in the mercy of their export capabilities. Not to mention the safety of my notes when they’re stored on my machine / cloud storage of my preference when using something like obsidian
@@devopstoolboxnail on the head with notion. You can make it look super sexy but to get to that point is a pain in the ass. Then all the vendor lockin afterwards makes it worse.
There are a few plugins that you can use to sort of recreate notion databases. DB Folder and Projects.
This guy transmit calm and good vibes and I really like this channel.
Hey man, loving your videos. I'm facing this weird error whenever I open nvim out of the SecondBrain folder I have set in my iCloud directory as you have:
```
Error 12:56:02 notify.error Obsidian.nvim 'Users/renatillas/Library/Mobile Documents/iCloud~md~obsidian/Documents/SecondBrain/Templates' is not a valid directory for templates
```
The Templates folder is in my system with some example.md created there. Do you know what may be happening?
Thanks!
Not 100% sure but make sure you have the templates dir configured properly in the plugin, here’s mine: github.com/omerxx/dotfiles/blob/master/nvim/lua/plugins/obsidian.lua#L36
@@devopstoolbox Solved! The problem was that I did not put an slash before the obsidian path. Got it working right away
Something bugging me about obsidian isn't it doesn't support anchor links when you export to pdf. Only external links work. So far, it's the best thing I've found though for exporting pdfs with consistent style and code snippets.
Interesting, haven’t tried or thought about it.
I've being using notion, but latelety i have beeb a bit upset with the "input lag" and the time small actions take in this platform (even on a beefy laptop). I'd probabky give this a try.
Let me know how it goes !
Amazing content!
How do you open that `cmdline` floating window, and what is the configuration for it?
within obsidian it's command + /
and command + , for quick access to settings
@devopstoolbox ah, so it's obsidian specific
the lengths some people go to avoid switching to GNU Emacs to use org-mode :)
😂
In my defense - I still want to be able to use obsidian’s UI for many reasons. If I’m only “stuck” in nvim that defeats the purpose
bruh!
the internet has some healthy people after all,....@@devopstoolbox
No (proper) mobile support is a big no for me :(
@@gusslx You use neovim on your phone? I have obsidian on my phone and it works great! Free sync with syncthing.
your nvim setup is just beautiful!
I am an avid user of Obsidian, and I do all my work in vim (now migrating my workflow to nvim). One thing I really love about obsidian is the canvas core plugin. It lays out my thoughts best. So unfortunately, I can't 100% write within nvim. Maybe with a nvim window and a canvas window I can manage that, but obsidian itself is not too bad when you have a vim keybinding.
IMO it doesn’t have to be one or the other. They complement each other exactly because of cases like yours!
o m g your nvim setup is stacked
I’ll take that as a compliment 😅
Does obsidian.nvim behave well with markdown preview? Meaning can you preview obsidian md files?
Of course! markdown is markdown
What a great video! Please, make a setup video: how did you configure all of this? Also, it would be great for non-Apple users on how to sync notes between devices (mainly Linux + Android).
Thank you!
Are you referring to setting the sync via iCloud? Because that’s really the one bit you don’t see, the rest is in the video and pretty straight forward - after the plugin is installed it needs a workspace and that’s about it.
About other sync methods - IIRC it works great with others like google drive so should be similar although I haven’t checked. Give it a go and let me know?
The git integration will of course be similar
Syncthing has you covered. Completely free P2P folder syncing, works perfectly with android and Linux for obsidian
i love neorg and the dev of neorg is so chill and a nice guy i mean he is great.
i just feel nvim community doesn't have a good markdown concealer if you feel it and think creating one it will be nice open source project i would love to contribute in that
True! The dude is awesome. He also made a nice "getting to know vim" series recently.
But the fact that I can't access my files with my mobile and being locked to a rather niche format was problematic for me. I still use it for single-project notes from time to time
@@devopstoolbox don't know why youtube keeps deleting my replies I guess it is because of a url m putting
Try calendar.nvim from itchyny
It will require gcp project with api access to calender and taska but then Google tasks and Google Calendar works nicely in neovim ......
@@devopstoolboxI'm not so worried about writing my notes from any device but having read access from my phone is essential.
Have you considered generating a static website using hugo or pandoc and syncing it using syncthing or GDrive/Dropbox?
I know I have :-) Just can't get it to work yet.
7:17 How did you get the cmdline popup?
Noice.nvim!
i attendded the workshop to obsidian of yours ..i'm facing issue on how to open the searched md file using neovim in the windows with out using mouse ....skhd is for mac ..i need the alternative for linux ..i'm currently using WSL (windows subsystem for linux)
I havn't personally tested but this one is a windows fork: github.com/LGUG2Z/whkd
@@devopstoolbox thanks ...for the reply ..does.the skhd config will woek with minor changes in the dotfiles ?
@@subbunittala2012 not 100% what it means but skhd if run as a background service, is watching the config file and adapts to any change immediately
I wanted to use obsidian but I didn't want to use a separate application to take notes that didn't have the vim motions. I'm using vimwiki but I'll give this a go now. Thank you very much.🙏💯
Vim motions + .vimrc file make obsidian as good as it gets at least for motions!
I LOVE Obsidian! it even has a plugin for Vim keybinds!
This is nice but working in the terminal takes away some thing important. Images. How do you work with images
To start off - it's very much doable! Modern terminals present images easily.
I don't care about it so I opted for a representation of an image that I know is there, I don't usually include images so that's not a problem for me.
How about a system for digital note taking with a stylus? I couldn't fond anything that works on all my devices:( (android phone, e-ink tablet)
I gotta be honest - I would LOVE to have a device purely for note taking. Can’t justify the expense and using a paper notebook (the one in the thumbnail)
hey, what theme is that at 2:13
looks so damn neat!
Not sure which one you meant but I'm using Nordic
What's the bar at the top of your nvim? I was looking through your dotfiles to try to find it but I couldn't find anything
Tmux? 😉
Check my tmux video!
@@devopstoolbox Oh! I'm so used to my tmux status bar being on the bottom I didn't notice it. I still need to go back and redo my tmux config some weekend. I downloaded someone else's ages ago and have never gone through and set it up myself. I just finished fixing that same mistake with neovim. I'll check your tmux video.
@devopstoolbox, you're the one that convinced me to invest in a neorg setup ... now you're telling me you moved to obsidian? Aaargh!
Kidding aside: I left Notion for nvim+neorg 5 months ago and I'm happy I did. With time and practice, my assumptions about what I needed have evolved; I'm as starting to be really interested in atomic notes (zettelkasten inspired) and Obsidian seems to have an awesome setup for that. Also: the sync with android app is a massive feature.
As someone else remarked in the comments already: my only gripe is that it's not a terminal app. Believe it or not but I actually prefer the look and feel of neorg in the terminal. More importantly, I will have to make sure I can make my Obsidian flow as quick and keyboard driven as nvim which is just incredible at that point.
On the plus side: the obsidian configuration community looks massive. It completely dwarfs what's available for Neorg tweaking.
Haha! I mentioned in the video I believe- I still use Neorg from time to time for specific project needs but to build a system like a second brain it requires more firepower. With the Neovim plugin I think it makes it as good if not better than Neorg given the visuals and ability to combine Neovim goodies when writing.
I even created a course going through the concepts and configs: learn.omerxx.com
That said - these things are so personal, there’s really no one size fits all type of solution. But if you’re sold on Neovim and quick frictionless note taking and like having control sync, mobile control etc, I think Neovim and obsidian are really the holy grail 😉😉
Any tips on migrating a neorg repo to markdown @@devopstoolbox ? I've been using neorg export but I don't know how to apply to a whole dir structure.
can you make a video on using this setup and pushing to your blog/website?
The video was supposed to cover the setup :) What are you missing?
What Obsidian theme do you use mate?
Obsidian Nord!
@@devopstoolbox Thanks!!!!!!!!!!!
Hi, great video about the topic! What terminal and color theme do you use in the video? Is that MacOS or Linux? I want to replicate that frosted glass look in my setup...
Hi! Thanks. I’m running Wezterm with Catppuccin on macOS . The frosty glass though is an editing trick.
That said, you can get it with wezterm config
thanks!@@devopstoolbox
Would you do a neovim configuration setup video. I love that you have the upper bar aesthetics :D
I feel like it's inevitable :) in the meantime feel free to see my configuration here: dotfiles.omerxx.com
I’m gonna have to reread the book. I’m so glad Readwise pushed this out on the newsletter this is a gold mine
It is :)
Love your channel! I think nvim orgmode and neorg are also interesting options
Thanks! I agree, covered Neorg in a video not too long ago but obsidian ticks all the boxes for me
Yes neorg is excellent. Aside from its usefulness, I think the project itself is interesting and covering ground well.
TIL about the @@ binding, and my brain just exploded. You can't imagine how much time I could have saved if I knew this earlier.
What are these studies that you mention at the beginning? Can you link to them please?
The original study was done on 2008 but for some reason the university removed the paper itself from their website. There’s lots of news and data around it:
www.zdnet.com/article/americans-consume-100000-words-of-information-each-day-study-says/
www.blog.askwonder.com/blog/information-data-media-consumed-in-day-average?format=amp
There was a more recent study, I’ll get the book references this week and try to get it for you
@@devopstoolbox thank you for those links. Was kinda hard to google it out
Great video @Devops Toolbox, I was wondering if you have been able to visualize images directly nvim while using obsidian plugin. I know it's possible as quarto distro does it, but can't get to configure image.nvim to do it. Please let me know if you got the hack! thanks and continue with the great content!
Thanks man!
I don’t think I ever tried doing it but I’ve heard many people did. I can try it out sometime and see what comes up though
@@devopstoolbox Thanks, I managed to have image.nvim working but it doesn't show pictures pasted via obsidian plugin.
What keyboard was that in the video? Looked nice
ZSA Moonlander
Great video! I tried installing this plugin within my NvChad config and, sadly, I couldn't make use og the ObsidianOpen command since I use Sway which uses Wayland; if someone knows how to work this out that would really help me. Oh, and also I use multiple Vaults in Obsidian, but I don't know how to swap between them inside nvim. When I run ObsidianWorkspace it only prints the same Vault, even if I'm writing in a note from another vault. Thanks and sorry for the long testament!
At the top, how do you have those icons with calendar, folder and time ?
Please how can i automate the hourly git commits?
Install the obsidian git community plugin and set the snapshot to run every 60 minutes. You can find the plugin by browsing from within obsidian but just in case your can find it here: github.com/denolehov/obsidian-git
Populate the NVME slot, add a NIC or two, and you've got a killer server and router right there. Good get.
Did you consider Logseq as an alternative to Obsidian?
Keep up the high quality of your videos - great content!
Not really TBH. Does it offer the same suit of features making it accessible via Neovim, sync, Md, and the rest?
Always interested in trying new stuff but I fear my second brain is too busy with finding a home rather than functioning as a notebook 😅
@@devopstoolbox logseq is like obsidian with more stuff out of the box, like task management and note queries. I don't know about using it with neovim, some dude made LSP(logseqlsp), you can try to make it work.
Logseq has sync feature like obsidian sync, but app is file-based so you can sync with whatever you want.
Also logseq has sick pdf annotation tool, i can't find obsidian plugins that are so good for pdf annotation
@@devopstoolbox I don't think it can, btw every single md implementation is custom, so even tho they are md not necessarily100% compatible, and they way logseq works it isn't compatible in fundamental ways with your way of using md probably.
@@Adrian_Galilea True, but the differences are usually subtle and if you make use of the fundamentals it’s generally ok.
@@devopstoolbox In the case of logseq and the way it structures things I don't think this applies, which was the original question. I haven't researched this in depth tho, speaking from memory.
I've been digging the rabbit hole for a while now, orgmode, asciidoc, markdoc, mdx... way too many options, still none that I fully like, I don't think markdown is enough nowadays, plus I don't like it's syntax, but it's totally fine. Such an interesting topic.
hi, nice video! may i know what is the plugin within neovim for the cmdline and search popup?
Of course! noice.nvim
@@devopstoolbox awesome! thanks so much. love it
I prefer Joplin, but this is pretty cool. I rotate between editors based on mood, one of which is NeoVim. Can't autocomplete note links though (not that I know of anyway), but ... meh. Anyway. Great demo.
AstroJS supports front-matter. So anyone can use the notetaking method of this video and host their own blog.
Does this plugin support link to blocks? For example [[page^text]], when I enter it in this way, it will only prompt to create a new file.
So, this `[[foo#^Bar]]` works, but only via obsidian's UI. When I follow links from other notes I'm getting to the top of the note always. I'll explore this a little bit
@@devopstoolbox Thanks😘
First off what a fantastic video! I am definitely going to use this plugin since I love obsidian, but always prefer to edit text in neovim so this is perfect for me :) Quick question, how do you get it so those check mark boxes are rendered like that? For me i can't even see the - [ ] i just see nothing but what text is next to the checkbox, let alone what you have which is way cooler
Thank you!
I guess this is having nerd font installed and a terminal that supports them (I run wezterm). You’re also welcome to check out my config at dotfiles.omerxx.com if I missed anything!
@@devopstoolbox Thanks for this! Was looking for your config. Even with treesitter and a load of other vim plugins, I am missing some nice features displayed in your video.
@@ShortSnoph let me know specific ones I’ll try to help
Whats the difference in content between the course you are offering and this video?
Great question! The workshop goes deeper into all the principles in the book like PARA and CODE, it includes my structure step-by-step and the way I’m using templates (with the templates themselves) and more things that are hard to pack into a short YT video
your obsidian looks slick! What sort of templates you use? I assume it's custom, can you share the config?
You mean the appearance / colors or the actual templates for notes?
@@devopstoolbox appearance / theme / colors :)
Ah! I use "Obsidian Nord" as a theme :)@@czarnygwlef
I used Obsidian for a bit. Then wrote my own wiki that uses markdown with automatic converting WikiWord's to links, like the original WikiWikiWeb, with custom code blocks repurposed as a general formatting tool (basically if I and a method to the renderer class, that takes the contents of the fenced block and spews out the appropriate HTML).
It has versioning (for authenticated users, along with editing and a few other things), though I rarely need to look through previous versions of pages (but it is a feature of a typical Wiki). I have a few of them, one publicly viewable for notes I'm happy to share publicly, and the result suits me fine: there isn't the sync'ing issue that one gets with Obsidian as it just runs in a browser. Moreover, knowing the code, I can, and often do, just plumb in features where I want them. Backend is vanilla PHP, frontend vanilla Javascript.
I can copy/paste between vim for more detailed edits, which I'm fine with.
Everything sounds perfect expect for the last part. Funny as it may sound, copy pasting in and out of editors is the small friction that’s definitely breaking my habit in the long run and why I’d give up on the idea 🤷
@5:05 Guess you'll never get to write the next star wars script featuring jj binks. Jokes! Great content.
good point 😆
How do you get the cmdline popup to work?
Noice.nvim!
@@devopstoolbox THANK YOU
Your videos are always amazing. I love Obsidian, but I discovered Capacities. So, I'm trying to get use to it. Looks pretty solid. When did you change to the Moonlander? I noticed you started using it since few videos ago. Do you still using your HHKB? How do you feel about the change? Cheers!
I did switch just a few months back when you noticed :) the hhkb is unmatched in typing experience, the Moonlander is amazing in the fact it’s split, orthilinear and configurable with layers macros etc. so I’m not going back but if I could put the topre feel ok the moon lander it’d be the PERFECT KB
@@devopstoolbox I would die for a topre feel on my UHK as well
What I find odd about obsidian is that is really hard to copy paste commands without having the markdown on the middle
WDYM by that?
Great plugin. Thanks for showing it to us
This is amazing! Thank you!
anyone know what mech keyboard he's using at 10:48 ?
found it - ZSA Moonlander
Moonlander ❤️
Dude, awesome channel, great video, love it.
🙏🏽
I was shocked that someone who used nvim would use notion, but then you said "obsidian has vim motions so you'll feel right at home" and wow, guess we get very different things out of vim. There's like....wayyy more that I use from vim than that.
Vim motions are incredible and adopted by so many tools, as a vim user I’m always on the lookout for solutions that have integrated or at least make the option accessible enough
Vim motions in Obsidian are nice. Half the time, though I use Neovim + MarkdownFlow plugin to edit notes in my vault.
@@philipcollier7805 same!
@@devopstoolbox He was telling you that vim motions alone weren't sufficient for him and he wouldn't feel home just because a tool had them as an option.
@@heroe1486 sure I get that (that’s way most of the video is about actually using Neovim as the note taker) but to me, having vim motions in the UI itself makes a world of difference
The biggest gripe with Obsidian I have that it's not opensource. And the last thing I want is my notes being a food for some corpo-AI-marketing model.
@@x0rZ15t I heard the not open source claim a lot, and I understand your point, but other than that it’s pretty much free and you own your data. If you don’t sync through obsidian I’m pretty sure they can’t do anything.
This is why i love Joplin.
Long time obsidian user i had no idea thank you!
I got my moonlander last month! Which switches did you get?
Cherry blue, but got myself GATERON Milky Yellow Pro now which are miles better
what about "images" or "screenshots" how it is renedered in neovim or obsidian ??
No problem with images on Obsidian!
Images need your terminal to be able to render them but if you *really* want you can make it work. When I have a lot of visuals I just use obsidians ui
@@devopstoolbox thank you , just one more question ...if we move to another page swiftly using neovinm and obsidian (working as renderer) is open in the vertical window...does that action of the moving to another page will be reflected in the obsidian simeltaneous in real time ?
Thank you for this video. This has inspired me to use obsidian with emacs using the obsidian.el package. I've been using the two separately and found that obsidian's vim emulation was ok but not perfect.
Interesting! You’re the first 🙏🏽
Waiting to hear how it goes!
What about inkdrop
I love Takuya but I can’t really say how they compare as I haven’t used it. Have you?
but it doesn't run in terminal and through ssh!
@@linuxrant but it is md files afterall! Edit them however you like!
@@devopstoolbox ok, fine, I'll do it!!!
Thanks for the video. this looks really promising
🙏
THANKYOU SO MUCH FOR SHARING
Could you share your .bashrc file? It looks great
Of course: dotfiles.omerxx.com :)
Thank you for the great video!
So which one are you using ?? 2 months ago you made a video about Neorg saying that you're using it for your notes, now its Obsidian ...
Yep, mentioned in the beginning of the video! Moved to obsidian for my second brain (from notion). Neorg was, and still is sometimes my engineering notes taking format when working inside a git repo.
How do you get obsidian to show keystrokes?
When you turn on vim bindings you should see motions in normal mode.
If you’re referring to the key strokes on the black box in the video though, this would be Keycastr
Bro are you using NVChad?
Nope :) Started with kickstart.nvim back when I converted to lua, then added lazy. That's pretty much it.
Obsidian looks nice. Does it support latex mathematical expressions? It is very important for anyone who takes notes and works in STEM. Also does it support instant rendering / previewing of latex math expressions in neovim?
I’ve been asked and I’m not sure. Maybe it has a plugin, but I don’t have these requirements so it was never an issue
I got the Obsidian Tasks plugin working with calendar today. It wasn't hard to do, the docs are great - it just meant a reorganisation of some of my notes. Anyway, that is incredibly powerful. Obsidian is incredible.
Oh wow! This is next on my list. I was wondering how / if I can actually create a useful task management system there
@@devopstoolbox Oh and there's also a really good Kanban plugin for Obsidian. My only gripe with Obsidian is that it's not a terminal app, but I strongly suspect that that's just me being a snob 🤔😝
@@neilclay5835 I agree 😅
Given that it’s just Md files I guess it’s just waiting for someone to pick the idea up
How did you do it?
Mucha vuelta para tomar unas notas en un .txt, abrazo desde Argentina.
boludo
Wow dude, my brain is starting to split 😮
😂😂
If Vim is the chad of IDEs, then Obsidian is the Chad of note taking apps
Note taking realism.. Oh god how will I pay my bills.. this chapter is 100 pages, I need the toilet for 15 minutes, I should do the dishes, my note app is open... I will configure obsidian.. open 5 links, workout some win, configure some file, reminds me of vim, open vim, open obsidian, not sure what to do... settle on osx notes, Zotero or iA writer, go to bed.
Vimwiki works in Nvim too
It does! I know people are doing great with it, I'm not a fan
0:18 Brazil almost mentioned
🇧🇷
Just one little thing, if you are an engineer Who has no knowledge of LATEX Code and Wants to add complex formulas [ usually calculus ] to his notes seamlessly, you would shit Bricks and jump though hoops to get anything done with obsidian. I understand that having your notes linked visually and spatially can be very useful but for mathematicians, physicists, Mechanical & Electrical Engineers who need this the most, but do not possess LATEX skills OBSIDIAN is USELESS, it just does not come any anywhere close to writing on paper.
Yep, makes sense. I understand it’s not for everyone, as someone who works in software and trying to build a second brain to support all aspects of life including work, it suits me very well. For my sketches and diagrams I have a plugin that integrates Excalidraw. Not doing anything complicated like you as far as visualization go.
As with every tool - there isn’t one size fits all (surely obsidian doesn’t fit everyone’s style). YMMV
Quarto is fantastic Plz look into that
It doesn't matter how old the brain is since everything is made with it in mind.
I'm not currently a Vim user, but this *may* convince me to switch to Obsidian if they embody the same privacy values as Logseq.
It does as far as I know.
Vim is sadly not fully supported. gf doesnt seem to be working macros are broken. I use it but i miss the neovim experience.
Why not Neovim then?
You could also always just go raw but definitely having the entire thing around makes life nicer
@devopstoolbox I use neovim for coding. I like the markup experience for notes. Do you have any plug-ins you recommend?
@@princeofexcess I’m actually working on a video covering these as we speak. Don’t have a conclusion yet but stay tuned :)
The video is good but i got lost in your flow.
You used obsidian with vim support
Then no any introduction to how you use neovim in obsidian???
I spoke about the process and how I can use vimrc for the motions, and when I want the full Neovim environment I use the plugin which is also covered, but honestly it’s docs are doing much better job than me at explaining.
If this is about my file structure you check out learn.omerxx.com
But I’m not sure that was it