[oni-browse-url] Move autoload into ‘oni-core’
Because these configurations might now be installed through a package manager they should be loaded through my “core” configuration.
This commit is contained in:
parent
fccabea46c
commit
79a2ec9b8a
2 changed files with 3 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210259
|
;; Version: 2021.0727.202603
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
|
@ -32,7 +32,5 @@
|
||||||
'browse-url-default-windows-browser
|
'browse-url-default-windows-browser
|
||||||
'browse-url-firefox))
|
'browse-url-firefox))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'browse-url (require 'oni-browse-url))
|
|
||||||
|
|
||||||
(provide 'oni-browse-url)
|
(provide 'oni-browse-url)
|
||||||
;;; oni-browse-url.el ends here
|
;;; oni-browse-url.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.0726.213020
|
;; Version: 2021.0727.202557
|
||||||
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard)
|
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -263,6 +263,7 @@ _s_: String list"
|
||||||
(with-eval-after-load 'smartparens (require 'oni-smartparens))
|
(with-eval-after-load 'smartparens (require 'oni-smartparens))
|
||||||
(with-eval-after-load 'vterm (require 'oni-vterm))
|
(with-eval-after-load 'vterm (require 'oni-vterm))
|
||||||
(with-eval-after-load 'yasnippet (require 'oni-yasnippet))
|
(with-eval-after-load 'yasnippet (require 'oni-yasnippet))
|
||||||
|
(with-eval-after-load 'browse-url (require 'oni-browse-url))
|
||||||
|
|
||||||
;; Enable any modes that I want to have turned on right away.
|
;; Enable any modes that I want to have turned on right away.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue