Naoya Yamashita

Results 221 comments of Naoya Yamashita

I used to have minor mode turned on in `:custom`, but it wasn't enabled in some packages for some reason. An easy solution to this problem is to call minor...

> @conao3 The thing is minor modes are defcustoms, so :custom should work for them I know what define-minor-mode does. And I know what define-minor-mode actually does. But, in principle,...

agree with @waymondo. there're any concerns?

just add `(auto-package-update-maybe)` on your `.emacs` is sufficient?

maybe, `:functions flycheck-add-mode` to suppress the warning.

https://github.com/conao3/leaf.el/blob/a4fd520f5c31f54e0797155866e0b35df277664e/leaf.el#L1081-L1087 leaf try to solve this issue. If failed to `package-install`, try to `package-refresh-contents` and then try `package-install`. If second `package-install` failed, finally leaf give up and raise error.

Please use `:demand t` if you want to load when emacs wake up. (`macroexpand` `use-package` is the fastest way to understand `use-package`) ``` (setq use-package-expand-minimally t) ;;=> t (macroexpand '(use-package...

all you need is moving `:config` keyword, I think. ```elisp (use-package evil :init :bind (:map evil-normal-state-map ("gr" . my/sel-to-end) ("gl" . evil-end-of-visual-line)) (setq evil-want-integration t) ;; This is optional since...

To be honest, if you want to change the Emacs color theme to something different, you need to restart Emacs. This should not be necessary, but the reality is that...

I know this is off-topic but you have another option [leaf](https://github.com/conao3/leaf.el). The difference between leaf and use-package discussed [there](https://github.com/conao3/leaf.el/issues/257#issuecomment-502440374).