Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Funnily enough, I'm going to other way: long time Emacs users, getting closer to switching to evil-mode (Vi emulation in Emacs). Doubt I'll ever leave Emacs though.

As an aside, how does one keep up with Emacs package development? There is lots of stuff that's new to me (e.g. I just found out about company-mode). I'd like to have some way to have this information pushed to me, rather than having to go searching.



You may want to check r/emacs on reddit. People discuss about new packages there. If someone knows other resources, please let me know as well.


evil-mode is actually pretty good. I've been using it for clojure (paredit is quite nice). Keep in mind, though, that not all packages are gonna work as expected (I had problems with multiple-cursors, for example).

Something I would really recommend you: there are a lot of people in vim (like me) that have remaped the ESC key to a combination of keys (in my case jk); that is, by pressing j followed by k you go to normal mode (it's actually way faster than having to reach ESC). In vim, such thing is very easy; in emacs, you need to install the key-chord package, and something like the following would work:

(require 'key-chord) (key-chord-mode 1) (key-chord-define evil-insert-state-map "jk" 'evil-normal-state) (setq key-chord-two-keys-delay 1.0)

Relative numbers are very nice, as well.

By the way, regarding company-mode, I think autocomplete is newer and it's what most people are using nowadays.

I found out about a bunch of plugins through emacs live and prelude (and then switched to my own config). Take a look to other people's config on github :)


Well, there's a myriad of blog posts about great packages for Emacs, so that covers everything pre-existing.

Add MELPA to your package sources, then just M-x list-packages here and there and check out anything new that looks cool.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: