| Twitch | https://www.twitch.tv/pizzatorque |
| Twitch | https://www.twitch.tv/pizzatorque |
#Emacs stream starting in 10m, let's see if master builds ok :D
I think I've tried most #RSS readers out there since I've been on the web.
And I'm also #selfhosting miniflux with reactflux as a frontend, which works great especially on mobile.
But I'll be honest, I've been setting up and trying Elfeed inside #Emacs and it could probably be the best RSS reader I've ever used.
I think mostly because it's so well integrated with my custom Emacs setup, but also I find the filtering system very fast and useful.
Overall it's a very distraction-free experience.
It's me, your weekly #emacs rambling birb.
Today I am going to rant about tree-sitter and emacs and consult and vertico and why the hell is my `consult-buffer` taking SIX seconds to go to the next file.
So good news, if emacs is sluggish, you can `M-x profiler-start`, reproduce the problem, and `M-x profiler-report` to see where it's taking its sweet time. My problem is that the sweet time is in `treesit-auto--set-major-remap`.
https://www.masteringemacs.org/article/how-to-get-started-tree-sitter highlights one solution: you can manually remap every major mode to a TS-compatible mode.
I'm pretty sure that the culprit is somewhere in https://github.com/renzmann/treesit-auto, but the workaround from https://github.com/renzmann/treesit-auto/issues/84 doesn't seem to fix the problem for me.
Oh well.
I find it peculiar that I very much switched non-programming editing to emacs by now (org, md, yaml, all that stuff), but I still use nvim for code because nvim is just *fast*. It's like everything in it is just more efficient whereas emacs is fancy but takes its time (I'd say that my barebones emacs setup is on par with VSCode in slowness). With vim, I don't think if I need to do anything to open some extra random file type, it will most probably just work, and the only thing that gave me a headache recently was pkl support.

Emacs 29 introduces tree-sitter support, a powerful parsing library that enhances its understanding of source code. With this integration, Emacs gains features like precise syntax highlighting, accurate indentation and easier extensibility. Here's how you install and configure Emacs with tree-sitter support.