I’m a new emacs user and I’ve been using doom emacs for a while now and i’m willing to learn Elisp, but found out that it might not be as easy as it might seem at first, because as i found out, lisp is quite different from other programming languages that i’m used to, especially knowing that i’m not a programmer by any means and my programming knowledge is very little, not mentioning that elisp is pretty old so the learning resources might not be as much as other more popular programming languages
so my question is, Is it worth it?
like what is the level of mastery do i need to achieve to start implementing custom elisp in my configs to enhance my emacs experience?
and how exactly can i improve my emacs experience if i learned elisp?
in other words, how rewarding it would be
Hey,
use-package
user here. I switched from my half-baked NIH init framework with a bunch of functions and other stuff you’re talking about, and never looked back.My 1670kLoC config doesn’t contain any definitions and mostly declarative. If I need to
defun
something (so, there’s no package with similar functionality) - there’s definitely time to start another package. I don’t even need to publish it on MELPA, since installation from git sources hasn’t been an issue since Quelpa appeared (like 10 years ago).Debugging
use-package
forms is very easy if you know about macro expansion.