Jacob MacDonald

Results 79 comments of Jacob MacDonald

Ah, didn't realize that. That or another environment variable for Kvantum themes I suppose. Thanks for pointing it out, I don't use Kvantum :)

I had also missed the Makefile at first, that seems like a nice way to do things. My Make is really bad, so I need to figure out variable-setting and...

I've been experiencing dropped keystrokes on Windows when typing quickly and bisecting led me to suspect smartparens. Adding this change eliminated the drops in buffers. Now Emacs hangs for a...

Not on Windows any more so I can't say if it fixed my usecase or not. I'll update and cross my fingers though!

To avoid the load-on-every-frame problem I whipped up a variant using `cl-labels`. ``` elisp (if (daemonp) (cl-labels ((load-nord (frame) (with-selected-frame frame (load-theme 'nord t)) (remove-hook 'after-make-frame-functions #'load-nord))) (add-hook 'after-make-frame-functions #'load-nord))...

Thanks for circling back! My snippet is working well enough in practice for now, but I've noticed some irregularities and will work on a reproduction guide later this week. That...

Might look at PR'ing this. Are there guidelines for what the Nord colors are in smaller color spaces or should I just eyeball it for 24-bit and 16-color displays?

@rien333 Are you using `lexical-binding: t`? That's probably the easiest way `cl-labels` would fail. Perhaps I should whip up a non-lexical solution so it works for more people.

It needs to be set with a file-local variable as in [my config](http://chiselapp.com/user/jaccarmac/repository/dot-emacs-dot-d/artifact/6278c492073e2b3f) (see top), otherwise `cl-labels` will not work properly in that snippet. Otherwise you'll need to use `cl-block`...

Can't speak to the issues folks were having in a TTY, but I still need my delayed-load hack for the theme to load under a daemon properly.