1
0
Fork 0

[oni-counsel] Remove autoload cookie, load from ‘oni-core’

This commit is contained in:
Tom Willemse 2021-09-19 23:41:08 -07:00
parent 54859fa9a8
commit bede6c21cf
Signed by: ryuslash
GPG key ID: 7D5C407B435025C1
2 changed files with 4 additions and 6 deletions

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2021.0919.232156
;; Version: 2021.0919.234012
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch)
;; This program is free software; you can redistribute it and/or modify
@ -261,6 +261,7 @@ _s_: String list"
(with-eval-after-load 'company (require 'oni-company))
(with-eval-after-load 'compile (require 'oni-compilation))
(with-eval-after-load 'conf-mode (require 'oni-conf))
(with-eval-after-load 'counsel (require 'oni-counsel))
(with-eval-after-load 'elfeed (require 'oni-elfeed))
(with-eval-after-load 'embrace (require 'oni-embrace))
(with-eval-after-load 'flycheck (require 'oni-flycheck))
@ -297,6 +298,7 @@ _s_: String list"
(ws-butler-global-mode)
(which-key-mode)
(auto-insert-mode)
(counsel-mode)
(provide 'oni-core)
;;; oni-core.el ends here

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2020.0915.225608
;; Version: 2021.0919.233934
;; Package-Requires: (counsel diminish)
;; This program is free software; you can redistribute it and/or modify
@ -47,9 +47,5 @@
(define-key counsel-mode-map (kbd "C-x f") 'counsel-recentf)
;;;###autoload(with-eval-after-load 'counsel (require 'oni-counsel))
;;;###autoload
(add-hook 'emacs-startup-hook 'counsel-mode)
(provide 'oni-counsel)
;;; oni-counsel.el ends here