Remove all self-loading autoload cookies
The big downside of usuing these cookies to inject my configuration into the loading of a package is that it means that I can't load that package without my configuration anymore. This means that when I start ‘emacs -Q’ and then call ‘package-initialize’ it'll load my configuration as well. This makes debugging things very difficult.
This commit is contained in:
parent
9a7c7e0673
commit
cfa0179053
44 changed files with 99 additions and 136 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.1210.225944
|
;; Version: 2021.1123.002846
|
||||||
;; Package-Requires: (ahk-mode)
|
;; Package-Requires: (ahk-mode)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -39,7 +39,5 @@
|
||||||
(add-hook 'ahk-mode-hook 'electric-indent-local-mode)
|
(add-hook 'ahk-mode-hook 'electric-indent-local-mode)
|
||||||
(add-hook 'ahk-mode-hook 'oni-autohotkey--auto-fill-mode)
|
(add-hook 'ahk-mode-hook 'oni-autohotkey--auto-fill-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'ahk-mode (require 'oni-autohotkey))
|
|
||||||
|
|
||||||
(provide 'oni-autohotkey)
|
(provide 'oni-autohotkey)
|
||||||
;;; oni-autohotkey.el ends here
|
;;; oni-autohotkey.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0502.182847
|
;; Version: 2021.1123.002759
|
||||||
;; Package-Requires: (bmx-mode)
|
;; Package-Requires: (bmx-mode)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -30,7 +30,5 @@
|
||||||
|
|
||||||
(bmx-mode-setup-defaults)
|
(bmx-mode-setup-defaults)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'bat-mode (require 'oni-bat))
|
|
||||||
|
|
||||||
(provide 'oni-bat)
|
(provide 'oni-bat)
|
||||||
;;; oni-bat.el ends here
|
;;; oni-bat.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0413.020909
|
;; Version: 2021.1123.002421
|
||||||
;; Package-Requires: (oni-company oni-flycheck oni-paredit rainbow-delimiters slime slime-company)
|
;; Package-Requires: (oni-company oni-flycheck oni-paredit rainbow-delimiters slime slime-company)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -52,7 +52,5 @@
|
||||||
(add-hook 'lisp-mode-hook 'company-mode)
|
(add-hook 'lisp-mode-hook 'company-mode)
|
||||||
(add-hook 'lisp-mode-hook 'oni-common-lisp--auto-fill-mode)
|
(add-hook 'lisp-mode-hook 'oni-common-lisp--auto-fill-mode)
|
||||||
|
|
||||||
;;;###autoload (with-eval-after-load 'lisp-mode (require 'oni-common-lisp))
|
|
||||||
|
|
||||||
(provide 'oni-common-lisp)
|
(provide 'oni-common-lisp)
|
||||||
;;; oni-common-lisp.el ends here
|
;;; oni-common-lisp.el ends here
|
||||||
|
|
43
oni-core.el
43
oni-core.el
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.1116.202845
|
;; Version: 2021.1123.003634
|
||||||
;; 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)
|
;; 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
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -249,12 +249,15 @@ _s_: String list"
|
||||||
;; installed they get loaded automatically, but don’t require them to be
|
;; installed they get loaded automatically, but don’t require them to be
|
||||||
;; installed.
|
;; installed.
|
||||||
|
|
||||||
|
(with-eval-after-load 'ahk-mode (require 'oni-autohotkey))
|
||||||
(with-eval-after-load 'alert (require 'oni-alert))
|
(with-eval-after-load 'alert (require 'oni-alert))
|
||||||
|
(with-eval-after-load 'bat-mode (require 'oni-bat))
|
||||||
(with-eval-after-load 'bats (require 'oni-bats))
|
(with-eval-after-load 'bats (require 'oni-bats))
|
||||||
(with-eval-after-load 'bookmark (require 'oni-bookmark))
|
(with-eval-after-load 'bookmark (require 'oni-bookmark))
|
||||||
(with-eval-after-load 'browse-url (require 'oni-browse-url))
|
(with-eval-after-load 'browse-url (require 'oni-browse-url))
|
||||||
(with-eval-after-load 'cc-mode (require 'oni-c nil t))
|
(with-eval-after-load 'cc-mode (require 'oni-c nil t))
|
||||||
(with-eval-after-load 'cc-mode (require 'oni-cpp nil t))
|
(with-eval-after-load 'cc-mode (require 'oni-cpp nil t))
|
||||||
|
(with-eval-after-load 'cc-mode (require 'oni-java nil t))
|
||||||
(with-eval-after-load 'cider (require 'oni-clojure))
|
(with-eval-after-load 'cider (require 'oni-clojure))
|
||||||
(with-eval-after-load 'circe (require 'oni-circe))
|
(with-eval-after-load 'circe (require 'oni-circe))
|
||||||
(with-eval-after-load 'clojure-mode (require 'oni-clojure))
|
(with-eval-after-load 'clojure-mode (require 'oni-clojure))
|
||||||
|
@ -266,19 +269,57 @@ _s_: String list"
|
||||||
(with-eval-after-load 'csharp-mode (require 'oni-csharp))
|
(with-eval-after-load 'csharp-mode (require 'oni-csharp))
|
||||||
(with-eval-after-load 'css-mode (require 'oni-css))
|
(with-eval-after-load 'css-mode (require 'oni-css))
|
||||||
(with-eval-after-load 'diff-hl (require 'oni-diff-hl))
|
(with-eval-after-load 'diff-hl (require 'oni-diff-hl))
|
||||||
|
(with-eval-after-load 'dired (require 'oni-dired))
|
||||||
|
(with-eval-after-load 'ediff (require 'oni-ediff))
|
||||||
(with-eval-after-load 'elfeed (require 'oni-elfeed))
|
(with-eval-after-load 'elfeed (require 'oni-elfeed))
|
||||||
|
(with-eval-after-load 'elisp-mode (require 'oni-elisp))
|
||||||
|
(with-eval-after-load 'elm-mode (require 'oni-elm))
|
||||||
(with-eval-after-load 'embrace (require 'oni-embrace))
|
(with-eval-after-load 'embrace (require 'oni-embrace))
|
||||||
|
(with-eval-after-load 'eshell (require 'oni-eshell))
|
||||||
|
(with-eval-after-load 'fish-mode (require 'oni-fish))
|
||||||
(with-eval-after-load 'flycheck (require 'oni-flycheck))
|
(with-eval-after-load 'flycheck (require 'oni-flycheck))
|
||||||
|
(with-eval-after-load 'git-commit (require 'oni-git-commit))
|
||||||
|
(with-eval-after-load 'gnus (require 'oni-gnus))
|
||||||
|
(with-eval-after-load 'grep (require 'oni-grep))
|
||||||
|
(with-eval-after-load 'groovy-mode (require 'oni-groovy))
|
||||||
|
(with-eval-after-load 'haskell-mode (require 'oni-haskell))
|
||||||
|
(with-eval-after-load 'highlight-indent-guides (require 'oni-highlight-indent-guides))
|
||||||
(with-eval-after-load 'hydra (require 'oni-hydra))
|
(with-eval-after-load 'hydra (require 'oni-hydra))
|
||||||
|
(with-eval-after-load 'ielm (require 'oni-elisp))
|
||||||
|
(with-eval-after-load 'ivy (require 'oni-ivy))
|
||||||
|
(with-eval-after-load 'jabber (require 'oni-jabber))
|
||||||
|
(with-eval-after-load 'js2-mode (require 'oni-js))
|
||||||
|
(with-eval-after-load 'json-mode (require 'oni-json))
|
||||||
|
(with-eval-after-load 'lisp-mode (require 'oni-common-lisp))
|
||||||
|
(with-eval-after-load 'log-edit (require 'oni-log-edit))
|
||||||
(with-eval-after-load 'lsp (require 'oni-lsp))
|
(with-eval-after-load 'lsp (require 'oni-lsp))
|
||||||
|
(with-eval-after-load 'lua-mode (require 'oni-lua))
|
||||||
(with-eval-after-load 'lui (require 'oni-lui))
|
(with-eval-after-load 'lui (require 'oni-lui))
|
||||||
|
(with-eval-after-load 'magit (require 'oni-magit))
|
||||||
|
(with-eval-after-load 'make-mode (require 'oni-makefile))
|
||||||
|
(with-eval-after-load 'nov (require 'oni-epub))
|
||||||
(with-eval-after-load 'org (require 'oni-org))
|
(with-eval-after-load 'org (require 'oni-org))
|
||||||
(with-eval-after-load 'org-roam (require 'oni-org-roam))
|
(with-eval-after-load 'org-roam (require 'oni-org-roam))
|
||||||
|
(with-eval-after-load 'package (require 'oni-package))
|
||||||
|
(with-eval-after-load 'package-x (require 'oni-package))
|
||||||
(with-eval-after-load 'paredit (require 'oni-paredit))
|
(with-eval-after-load 'paredit (require 'oni-paredit))
|
||||||
|
(with-eval-after-load 'php-mode (require 'oni-php))
|
||||||
(with-eval-after-load 'prescient (require 'oni-prescient))
|
(with-eval-after-load 'prescient (require 'oni-prescient))
|
||||||
|
(with-eval-after-load 'projectile (require 'oni-projectile))
|
||||||
|
(with-eval-after-load 'python (require 'oni-python))
|
||||||
|
(with-eval-after-load 'ruby-mode (require 'oni-ruby))
|
||||||
|
(with-eval-after-load 'rust-mode (require 'oni-rust))
|
||||||
|
(with-eval-after-load 'scheme (require 'oni-scheme))
|
||||||
|
(with-eval-after-load 'sgml-mode (require 'oni-html))
|
||||||
(with-eval-after-load 'sh (require 'oni-sh))
|
(with-eval-after-load 'sh (require 'oni-sh))
|
||||||
|
(with-eval-after-load 'shr (require 'oni-shr))
|
||||||
(with-eval-after-load 'smartparens (require 'oni-smartparens))
|
(with-eval-after-load 'smartparens (require 'oni-smartparens))
|
||||||
|
(with-eval-after-load 'sort (require 'oni-sort))
|
||||||
|
(with-eval-after-load 'tramp (require 'oni-tramp))
|
||||||
|
(with-eval-after-load 'vc (require 'oni-vc))
|
||||||
(with-eval-after-load 'vterm (require 'oni-vterm))
|
(with-eval-after-load 'vterm (require 'oni-vterm))
|
||||||
|
(with-eval-after-load 'web-mode (require 'oni-web))
|
||||||
|
(with-eval-after-load 'yaml-mode (require 'oni-yaml))
|
||||||
|
|
||||||
(with-eval-after-load 'yasnippet
|
(with-eval-after-load 'yasnippet
|
||||||
(require 'oni-yasnippet)
|
(require 'oni-yasnippet)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.1010.013833
|
;; Version: 2021.1123.003414
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -45,7 +45,5 @@
|
||||||
(add-to-list 'dired-guess-shell-alist-user
|
(add-to-list 'dired-guess-shell-alist-user
|
||||||
`(,(rx (or ".jpg" ".jpeg" ".png" ".gif") eos) "feh"))
|
`(,(rx (or ".jpg" ".jpeg" ".png" ".gif") eos) "feh"))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'dired (require 'oni-dired))
|
|
||||||
|
|
||||||
(provide 'oni-dired)
|
(provide 'oni-dired)
|
||||||
;;; oni-dired.el ends here
|
;;; oni-dired.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.1130.123447
|
;; Version: 2021.1123.002904
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -86,7 +86,5 @@
|
||||||
(add-hook 'ediff-cleanup-hook #'oni-ediff--turn-off-fullscreen)
|
(add-hook 'ediff-cleanup-hook #'oni-ediff--turn-off-fullscreen)
|
||||||
(add-hook 'ediff-cleanup-hook 'winner-undo)
|
(add-hook 'ediff-cleanup-hook 'winner-undo)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'ediff (require 'oni-ediff))
|
|
||||||
|
|
||||||
(provide 'oni-ediff)
|
(provide 'oni-ediff)
|
||||||
;;; oni-ediff.el ends here
|
;;; oni-ediff.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.0622.221045
|
;; Version: 2021.1123.003353
|
||||||
;; Package-Requires: (oni-company oni-flycheck oni-paredit oni-yasnippet oni-hydra rainbow-delimiters nameless erefactor flycheck-relint handle elisp-format)
|
;; Package-Requires: (oni-company oni-flycheck oni-paredit oni-yasnippet oni-hydra rainbow-delimiters nameless erefactor flycheck-relint handle elisp-format)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -136,8 +136,5 @@ _eb_: Buffer
|
||||||
:repls 'ielm
|
:repls 'ielm
|
||||||
:formatters 'elisp-format-buffer)
|
:formatters 'elisp-format-buffer)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'elisp-mode (require 'oni-elisp))
|
|
||||||
;;;###autoload(with-eval-after-load 'ielm (require 'oni-elisp))
|
|
||||||
|
|
||||||
(provide 'oni-elisp)
|
(provide 'oni-elisp)
|
||||||
;;; oni-elisp.el ends here
|
;;; oni-elisp.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.0209.175337
|
;; Version: 2021.1123.003612
|
||||||
;; Package-Requires: (elm-mode oni-lsp rainbow-delimiters)
|
;; Package-Requires: (elm-mode oni-lsp rainbow-delimiters)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -32,7 +32,5 @@
|
||||||
(add-hook 'elm-mode-hook 'lsp)
|
(add-hook 'elm-mode-hook 'lsp)
|
||||||
(add-hook 'elm-mode-hook 'rainbow-delimiters-mode)
|
(add-hook 'elm-mode-hook 'rainbow-delimiters-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'elm-mode (require 'oni-elm))
|
|
||||||
|
|
||||||
(provide 'oni-elm)
|
(provide 'oni-elm)
|
||||||
;;; oni-elm.el ends here
|
;;; oni-elm.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0407.231536
|
;; Version: 2021.1123.002745
|
||||||
;; Package-Requires: (nov)
|
;; Package-Requires: (nov)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -29,7 +29,5 @@
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
|
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'nov (require 'oni-epub))
|
|
||||||
|
|
||||||
(provide 'oni-epub)
|
(provide 'oni-epub)
|
||||||
;;; oni-epub.el ends here
|
;;; oni-epub.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.0227.172750
|
;; Version: 2021.1123.002814
|
||||||
;; Package-Requires: (eshell-fringe-status esh-autosuggest xterm-color eshell-syntax-highlighting)
|
;; Package-Requires: (eshell-fringe-status esh-autosuggest xterm-color eshell-syntax-highlighting)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -126,7 +126,5 @@
|
||||||
(slot . 0)
|
(slot . 0)
|
||||||
(window-height . 0.33)))
|
(window-height . 0.33)))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'eshell (require 'oni-eshell))
|
|
||||||
|
|
||||||
(provide 'oni-eshell)
|
(provide 'oni-eshell)
|
||||||
;;; oni-eshell.el ends here
|
;;; oni-eshell.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0408.000443
|
;; Version: 2021.1123.003540
|
||||||
;; Package-Requires: (fish-mode reformatter)
|
;; Package-Requires: (fish-mode reformatter)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -37,7 +37,5 @@
|
||||||
|
|
||||||
(add-hook 'fish-mode-hook 'oni-fish-fish-indent-on-save-mode)
|
(add-hook 'fish-mode-hook 'oni-fish-fish-indent-on-save-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'fish-mode (require 'oni-fish))
|
|
||||||
|
|
||||||
(provide 'oni-fish)
|
(provide 'oni-fish)
|
||||||
;;; oni-fish.el ends here
|
;;; oni-fish.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.1226.141017
|
;; Version: 2021.1123.003204
|
||||||
;; Package-Requires: (git-commit)
|
;; Package-Requires: (git-commit)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -29,7 +29,5 @@
|
||||||
(add-hook 'git-commit-mode-hook 'electric-quote-local-mode)
|
(add-hook 'git-commit-mode-hook 'electric-quote-local-mode)
|
||||||
(add-hook 'git-commit-mode-hook 'refill-mode)
|
(add-hook 'git-commit-mode-hook 'refill-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'git-commit (require 'oni-git-commit))
|
|
||||||
|
|
||||||
(provide 'oni-git-commit)
|
(provide 'oni-git-commit)
|
||||||
;;; oni-git-commit.el ends here
|
;;; oni-git-commit.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.0505.205651
|
;; Version: 2021.1123.002704
|
||||||
;; Package-Requires: (oni-data-dir)
|
;; Package-Requires: (oni-data-dir)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -88,7 +88,5 @@ Do this N times."
|
||||||
(eval (setq message-sendmail-extra-arguments
|
(eval (setq message-sendmail-extra-arguments
|
||||||
'("-a" "gmail")))))
|
'("-a" "gmail")))))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'gnus (require 'oni-gnus))
|
|
||||||
|
|
||||||
(provide 'oni-gnus)
|
(provide 'oni-gnus)
|
||||||
;;; oni-gnus.el ends here
|
;;; oni-gnus.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0305.222639
|
;; Version: 2021.1123.003553
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -47,7 +47,5 @@
|
||||||
|
|
||||||
(add-to-list 'grep-find-ignored-directories ".cask")
|
(add-to-list 'grep-find-ignored-directories ".cask")
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'grep (require 'oni-grep))
|
|
||||||
|
|
||||||
(provide 'oni-grep)
|
(provide 'oni-grep)
|
||||||
;;; oni-grep.el ends here
|
;;; oni-grep.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.1110.150802
|
;; Version: 2021.1123.002828
|
||||||
;; Package-Requires: (groovy-mode oni-embrace groovy-imports rainbow-delimiters jenkinsfile-mode)
|
;; Package-Requires: (groovy-mode oni-embrace groovy-imports rainbow-delimiters jenkinsfile-mode)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -50,7 +50,5 @@
|
||||||
(with-eval-after-load 'grep
|
(with-eval-after-load 'grep
|
||||||
(add-to-list 'grep-files-aliases '("groovy" . "*.groovy *.pipeline Jenkinsfile")))
|
(add-to-list 'grep-files-aliases '("groovy" . "*.groovy *.pipeline Jenkinsfile")))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'groovy-mode (require 'oni-groovy))
|
|
||||||
|
|
||||||
(provide 'oni-groovy)
|
(provide 'oni-groovy)
|
||||||
;;; oni-groovy.el ends here
|
;;; oni-groovy.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.1028.202333
|
;; Version: 2021.1123.003312
|
||||||
;; Package-Requires: (oni-ui oni-hydra yoshi-theme diminish)
|
;; Package-Requires: (oni-ui oni-hydra yoshi-theme diminish)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(require 'hydra)
|
(require 'hydra)
|
||||||
|
(require 'oni-ui)
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist '(font . "Fantasque Sans Mono-15"))
|
(add-to-list 'default-frame-alist '(font . "Fantasque Sans Mono-15"))
|
||||||
(add-to-list 'default-frame-alist '(internal-border-width . 15))
|
(add-to-list 'default-frame-alist '(internal-border-width . 15))
|
||||||
|
@ -126,7 +127,5 @@ _bi_: Auto Insert ^^ ^^
|
||||||
|
|
||||||
(load-theme 'yoshi :no-confirm)
|
(load-theme 'yoshi :no-confirm)
|
||||||
|
|
||||||
;;;###autoload(require 'oni-gui)
|
|
||||||
|
|
||||||
(provide 'oni-gui)
|
(provide 'oni-gui)
|
||||||
;;; oni-gui.el ends here
|
;;; oni-gui.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0429.230436
|
;; Version: 2021.1123.002510
|
||||||
;; Package-Requires: (haskell-mode rainbow-delimiters)
|
;; Package-Requires: (haskell-mode rainbow-delimiters)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -32,8 +32,5 @@
|
||||||
(add-hook 'inferior-haskell-mode-hook 'electric-pair-local-mode)
|
(add-hook 'inferior-haskell-mode-hook 'electric-pair-local-mode)
|
||||||
(add-hook 'inferior-haskell-mode-hook 'rainbow-delimiters-mode)
|
(add-hook 'inferior-haskell-mode-hook 'rainbow-delimiters-mode)
|
||||||
|
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'haskell-mode (require 'oni-haskell))
|
|
||||||
|
|
||||||
(provide 'oni-haskell)
|
(provide 'oni-haskell)
|
||||||
;;; oni-haskell.el ends here
|
;;; oni-haskell.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210610
|
;; Version: 2021.1123.003038
|
||||||
;; Package-Requires: (highlight-indent-guides)
|
;; Package-Requires: (highlight-indent-guides)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -30,7 +30,5 @@
|
||||||
|
|
||||||
(setq highlight-indent-guides-method 'character)
|
(setq highlight-indent-guides-method 'character)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'highlight-indent-guides (require 'oni-highlight-indent-guides))
|
|
||||||
|
|
||||||
(provide 'oni-highlight-indent-guides)
|
(provide 'oni-highlight-indent-guides)
|
||||||
;;; oni-highlight-indent-guides.el ends here
|
;;; oni-highlight-indent-guides.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.1210.225526
|
;; Version: 2021.1123.003501
|
||||||
;; Package-Requires: (oni-yasnippet)
|
;; Package-Requires: (oni-yasnippet)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -58,7 +58,5 @@
|
||||||
(with-eval-after-load 'yasnippet
|
(with-eval-after-load 'yasnippet
|
||||||
(oni-html-snippets-initialize)))
|
(oni-html-snippets-initialize)))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'sgml-mode (require 'oni-html))
|
|
||||||
|
|
||||||
(provide 'oni-html)
|
(provide 'oni-html)
|
||||||
;;; oni-html.el ends here
|
;;; oni-html.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.0712.215209
|
;; Version: 2021.1123.003513
|
||||||
;; Package-Requires: (ivy oni-prescient oni-hydra ivy-hydra diminish ivy-posframe ivy-prescient)
|
;; Package-Requires: (ivy oni-prescient oni-hydra ivy-hydra diminish ivy-posframe ivy-prescient)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -65,7 +65,5 @@
|
||||||
(with-eval-after-load 'ivy-posframe (diminish 'ivy-posframe-mode))
|
(with-eval-after-load 'ivy-posframe (diminish 'ivy-posframe-mode))
|
||||||
(with-eval-after-load 'ivy (diminish 'ivy-mode))
|
(with-eval-after-load 'ivy (diminish 'ivy-mode))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'ivy (require 'oni-ivy))
|
|
||||||
|
|
||||||
(provide 'oni-ivy)
|
(provide 'oni-ivy)
|
||||||
;;; oni-ivy.el ends here
|
;;; oni-ivy.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210634
|
;; Version: 2021.1123.002326
|
||||||
;; Package-Requires: (jabber oni-data-dir)
|
;; Package-Requires: (jabber oni-data-dir)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -94,7 +94,5 @@ Insert PROPOSED-ALERT in the buffer if it is non-nil."
|
||||||
(with-eval-after-load 'jabber-alert
|
(with-eval-after-load 'jabber-alert
|
||||||
(remove-hook 'jabber-alert-presence-hooks 'jabber-presence-echo))
|
(remove-hook 'jabber-alert-presence-hooks 'jabber-presence-echo))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'jabber (require 'oni-jabber))
|
|
||||||
|
|
||||||
(provide 'oni-jabber)
|
(provide 'oni-jabber)
|
||||||
;;; oni-jabber.el ends here
|
;;; oni-jabber.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.0622.221131
|
;; Version: 2021.1123.003434
|
||||||
;; Package-Requires: (oni-data-dir oni-lsp oni-hydra lsp-java rainbow-delimiters)
|
;; Package-Requires: (oni-data-dir oni-lsp oni-hydra lsp-java rainbow-delimiters)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -91,7 +91,5 @@
|
||||||
(indent-for-tab-command) _ "\n"
|
(indent-for-tab-command) _ "\n"
|
||||||
"}"))
|
"}"))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'cc-mode (require 'oni-java))
|
|
||||||
|
|
||||||
(provide 'oni-java)
|
(provide 'oni-java)
|
||||||
;;; oni-java.el ends here
|
;;; oni-java.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.0622.221147
|
;; Version: 2021.1123.003619
|
||||||
;; Package-Requires: (oni-company js2-mode js2-refactor oni-flycheck tern fic-mode rjsx-mode)
|
;; Package-Requires: (oni-company js2-mode js2-refactor oni-flycheck tern fic-mode rjsx-mode)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -69,8 +69,6 @@
|
||||||
|
|
||||||
(js2r-add-keybindings-with-prefix "C-c r")
|
(js2r-add-keybindings-with-prefix "C-c r")
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'js2-mode (require 'oni-js))
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0326.153836
|
;; Version: 2021.1123.003523
|
||||||
;; Package-Requires: (json-mode)
|
;; Package-Requires: (json-mode)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -29,7 +29,5 @@
|
||||||
(add-hook 'json-mode-hook 'electric-pair-local-mode)
|
(add-hook 'json-mode-hook 'electric-pair-local-mode)
|
||||||
(add-hook 'json-mode-hook 'electric-indent-local-mode)
|
(add-hook 'json-mode-hook 'electric-indent-local-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'json-mode (require 'oni-json))
|
|
||||||
|
|
||||||
(provide 'oni-json)
|
(provide 'oni-json)
|
||||||
;;; oni-json.el ends here
|
;;; oni-json.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.0723.011100
|
;; Version: 2021.1123.003632
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -27,7 +27,5 @@
|
||||||
|
|
||||||
(add-hook 'log-edit-mode-hook 'visual-line-mode)
|
(add-hook 'log-edit-mode-hook 'visual-line-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'log-edit (require 'oni-log-edit))
|
|
||||||
|
|
||||||
(provide 'oni-log-edit)
|
(provide 'oni-log-edit)
|
||||||
;;; oni-log-edit.el ends here
|
;;; oni-log-edit.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <chelys@rincewind>
|
;; Author: Tom Willemse <chelys@rincewind>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.0622.221212
|
;; Version: 2021.1123.003626
|
||||||
;; Package-Requires: (lua-mode rainbow-delimiters)
|
;; Package-Requires: (lua-mode rainbow-delimiters)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -29,7 +29,5 @@
|
||||||
(add-hook 'lua-mode-hook 'display-fill-column-indicator-mode)
|
(add-hook 'lua-mode-hook 'display-fill-column-indicator-mode)
|
||||||
(add-hook 'lua-mode-hook 'rainbow-delimiters-mode)
|
(add-hook 'lua-mode-hook 'rainbow-delimiters-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'lua-mode (require 'oni-lua))
|
|
||||||
|
|
||||||
(provide 'oni-lua)
|
(provide 'oni-lua)
|
||||||
;;; oni-lua.el ends here
|
;;; oni-lua.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.0214.182312
|
;; Version: 2021.1123.003600
|
||||||
;; Package-Requires: (magit magit-popup oni-hydra)
|
;; Package-Requires: (magit magit-popup oni-hydra)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -62,7 +62,5 @@ _i_: Init
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(global-set-key (kbd "C-c v") 'oni-hydra-magit/body)
|
(global-set-key (kbd "C-c v") 'oni-hydra-magit/body)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'magit (require 'oni-magit))
|
|
||||||
|
|
||||||
(provide 'oni-magit)
|
(provide 'oni-magit)
|
||||||
;;; oni-magit.el ends here
|
;;; oni-magit.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.0622.221229
|
;; Version: 2021.1123.002931
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -42,7 +42,5 @@
|
||||||
(add-hook 'makefile-mode-hook 'electric-pair-local-mode)
|
(add-hook 'makefile-mode-hook 'electric-pair-local-mode)
|
||||||
(add-hook 'makefile-mode-hook 'oni-makefile--auto-fill-mode)
|
(add-hook 'makefile-mode-hook 'oni-makefile--auto-fill-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'make-mode (require 'oni-makefile))
|
|
||||||
|
|
||||||
(provide 'oni-makefile)
|
(provide 'oni-makefile)
|
||||||
;;; oni-makefile.el ends here
|
;;; oni-makefile.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.0823.102817
|
;; Version: 2021.1123.002545
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -114,8 +114,5 @@ DESCRIPTION is the text of the news item."
|
||||||
|
|
||||||
(add-hook 'package-menu-mode-hook 'hl-line-mode)
|
(add-hook 'package-menu-mode-hook 'hl-line-mode)
|
||||||
|
|
||||||
;;;###autoload (with-eval-after-load 'package (require 'oni-package))
|
|
||||||
;;;###autoload (with-eval-after-load 'package-x (require 'oni-package))
|
|
||||||
|
|
||||||
(provide 'oni-package)
|
(provide 'oni-package)
|
||||||
;;; oni-package.el ends here
|
;;; oni-package.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.0622.221244
|
;; Version: 2021.1123.003007
|
||||||
;; Package-Requires: (php-mode oni-yasnippet oni-flycheck oni-company oni-hydra ggtags fic-mode company-php)
|
;; Package-Requires: (php-mode oni-yasnippet oni-flycheck oni-company oni-hydra ggtags fic-mode company-php)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -123,10 +123,15 @@ nil for some reason."
|
||||||
(with-eval-after-load 'yasnippet
|
(with-eval-after-load 'yasnippet
|
||||||
(oni-php-snippets-initialize)))
|
(oni-php-snippets-initialize)))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'php-mode (require 'oni-php))
|
;;;###autoload
|
||||||
;;;###autoload(add-to-list 'auto-mode-alist '("\\.inc\\'" . php-mode))
|
(add-to-list 'auto-mode-alist '("\\.inc\\'" . php-mode))
|
||||||
;;;###autoload(add-to-list 'auto-mode-alist '("\\.module\\'" . php-mode))
|
|
||||||
;;;###autoload(with-eval-after-load 'grep (add-to-list 'grep-files-aliases '("php" . "*.php *.inc *.module")))
|
;;;###autoload
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.module\\'" . php-mode))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(with-eval-after-load 'grep
|
||||||
|
(add-to-list 'grep-files-aliases '("php" . "*.php *.inc *.module")))
|
||||||
|
|
||||||
(provide 'oni-php)
|
(provide 'oni-php)
|
||||||
;;; oni-php.el ends here
|
;;; oni-php.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0306.095413
|
;; Version: 2021.1123.003113
|
||||||
;; Package-Requires: (projectile ivy oni-data-dir)
|
;; Package-Requires: (projectile ivy oni-data-dir)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -53,8 +53,6 @@
|
||||||
(setq projectile-generic-command "\"C:\\msys64\\usr\\bin\\find.exe\" . -type d \"(\" -path \"*/node_modules\" -o -path \"*/upload-test\" -o -path \"*/dlls\" -o -path \"*/apps/*/img\" -o -path \"*/apps/*/video\" -o -path \"*/apps/*/font\" -o -path \"*/apps/*/content\" -o -path \"*/apps/*/favicons\" -o -path \"*/apps/*/pages.*\" -o -path \"*/.intl\" \")\" -prune -o -type f -print0")
|
(setq projectile-generic-command "\"C:\\msys64\\usr\\bin\\find.exe\" . -type d \"(\" -path \"*/node_modules\" -o -path \"*/upload-test\" -o -path \"*/dlls\" -o -path \"*/apps/*/img\" -o -path \"*/apps/*/video\" -o -path \"*/apps/*/font\" -o -path \"*/apps/*/content\" -o -path \"*/apps/*/favicons\" -o -path \"*/apps/*/pages.*\" -o -path \"*/.intl\" \")\" -prune -o -type f -print0")
|
||||||
(setq projectile-indexing-method 'alien))
|
(setq projectile-indexing-method 'alien))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'projectile (require 'oni-projectile))
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(projectile-mode)
|
(projectile-mode)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.0622.221258
|
;; Version: 2021.1123.003606
|
||||||
;; Package-Requires: (oni-yasnippet oni-company oni-flycheck oni-hydra oni-lsp rainbow-delimiters reformatter traad)
|
;; Package-Requires: (oni-yasnippet oni-company oni-flycheck oni-hydra oni-lsp rainbow-delimiters reformatter traad)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -103,7 +103,5 @@ for indentation."
|
||||||
(with-eval-after-load 'yasnippet
|
(with-eval-after-load 'yasnippet
|
||||||
(oni-python-snippets-initialize)))
|
(oni-python-snippets-initialize)))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'python (require 'oni-python))
|
|
||||||
|
|
||||||
(provide 'oni-python)
|
(provide 'oni-python)
|
||||||
;;; oni-python.el ends here
|
;;; oni-python.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.0622.221314
|
;; Version: 2021.1123.003056
|
||||||
;; Package-Requires: (ruby-mode oni-yasnippet)
|
;; Package-Requires: (ruby-mode oni-yasnippet)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -60,7 +60,5 @@
|
||||||
(with-eval-after-load 'yasnippet
|
(with-eval-after-load 'yasnippet
|
||||||
(oni-ruby-snippets-initialize)))
|
(oni-ruby-snippets-initialize)))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'ruby-mode (require 'oni-ruby))
|
|
||||||
|
|
||||||
(provide 'oni-ruby)
|
(provide 'oni-ruby)
|
||||||
;;; oni-ruby.el ends here
|
;;; oni-ruby.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.1210.231207
|
;; Version: 2021.1123.002527
|
||||||
;; Package-Requires: (rust-mode oni-flycheck rainbow-delimiters)
|
;; Package-Requires: (rust-mode oni-flycheck rainbow-delimiters)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -37,7 +37,5 @@
|
||||||
(add-hook 'rust-mode-hook 'rainbow-delimiters-mode)
|
(add-hook 'rust-mode-hook 'rainbow-delimiters-mode)
|
||||||
(add-hook 'rust-mode-hook 'oni-rust--auto-fill-mode)
|
(add-hook 'rust-mode-hook 'oni-rust--auto-fill-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'rust-mode (require 'oni-rust))
|
|
||||||
|
|
||||||
(provide 'oni-rust)
|
(provide 'oni-rust)
|
||||||
;;; oni-rust.el ends here
|
;;; oni-rust.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.0622.221328
|
;; Version: 2021.1123.003531
|
||||||
;; Package-Requires: (oni-company oni-paredit rainbow-delimiters geiser geiser-guile)
|
;; Package-Requires: (oni-company oni-paredit rainbow-delimiters geiser geiser-guile)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -51,7 +51,5 @@
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(add-to-list 'interpreter-mode-alist '("scsh" . scheme-mode))
|
(add-to-list 'interpreter-mode-alist '("scsh" . scheme-mode))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'scheme (require 'oni-scheme))
|
|
||||||
|
|
||||||
(provide 'oni-scheme)
|
(provide 'oni-scheme)
|
||||||
;;; oni-scheme.el ends here
|
;;; oni-scheme.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0430.183119
|
;; Version: 2021.1123.003019
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -65,7 +65,5 @@ are the arguments passed in to it."
|
||||||
:filter-args #'oni-shr--colorize-remove-last-arg)
|
:filter-args #'oni-shr--colorize-remove-last-arg)
|
||||||
(add-function :around (symbol-function 'shr-tag-pre) #'oni-shr--recolorize)
|
(add-function :around (symbol-function 'shr-tag-pre) #'oni-shr--recolorize)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'shr (require 'oni-shr))
|
|
||||||
|
|
||||||
(provide 'oni-shr)
|
(provide 'oni-shr)
|
||||||
;;; oni-shr.el ends here
|
;;; oni-shr.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210825
|
;; Version: 2021.1123.002604
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -30,7 +30,5 @@
|
||||||
(when (eql system-type 'windows-nt)
|
(when (eql system-type 'windows-nt)
|
||||||
(setq sort-fold-case t))
|
(setq sort-fold-case t))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'sort (require 'oni-sort))
|
|
||||||
|
|
||||||
(provide 'oni-sort)
|
(provide 'oni-sort)
|
||||||
;;; oni-sort.el ends here
|
;;; oni-sort.el ends here
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2020.0724.190100
|
;; Version: 2021.1123.003341
|
||||||
;; Package-Requires: (oni-alert alert-termux)
|
;; Package-Requires: (oni-alert oni-tui alert-termux)
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -33,6 +33,7 @@
|
||||||
(require 'alert)
|
(require 'alert)
|
||||||
;;(require 'alert-termux)
|
;;(require 'alert-termux)
|
||||||
(require 'json)
|
(require 'json)
|
||||||
|
(require 'oni-tui)
|
||||||
|
|
||||||
(defun oni-termux--battery-status ()
|
(defun oni-termux--battery-status ()
|
||||||
"Get battery status information using `termux-battery status'.
|
"Get battery status information using `termux-battery status'.
|
||||||
|
@ -78,7 +79,5 @@ library, so use this function in ‘after-init-hook’ instead."
|
||||||
|
|
||||||
(display-battery-mode)
|
(display-battery-mode)
|
||||||
|
|
||||||
;;;###autoload(require 'oni-termux)
|
|
||||||
|
|
||||||
(provide 'oni-termux)
|
(provide 'oni-termux)
|
||||||
;;; oni-termux.el ends here
|
;;; oni-termux.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210828
|
;; Version: 2021.1123.002641
|
||||||
|
|
||||||
;; 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
|
||||||
|
@ -30,7 +30,5 @@
|
||||||
(setq tramp-persistency-file-name
|
(setq tramp-persistency-file-name
|
||||||
(concat user-emacs-directory "data/tramp"))
|
(concat user-emacs-directory "data/tramp"))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'tramp (require 'oni-tramp))
|
|
||||||
|
|
||||||
(provide 'oni-tramp)
|
(provide 'oni-tramp)
|
||||||
;;; oni-tramp.el ends here
|
;;; oni-tramp.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210831
|
;; Version: 2021.1123.003326
|
||||||
;; Package-Requires: (oni-ui)
|
;; Package-Requires: (oni-ui)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -26,9 +26,9 @@
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(load-theme 'wombat :no-confirm)
|
(require 'oni-ui)
|
||||||
|
|
||||||
;;;###autoload(require 'oni-tui)
|
(load-theme 'wombat :no-confirm)
|
||||||
|
|
||||||
(provide 'oni-tui)
|
(provide 'oni-tui)
|
||||||
;;; oni-tui.el ends here
|
;;; oni-tui.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.0827.110905
|
;; Version: 2021.1123.003239
|
||||||
;; Package-Requires: (beacon diminish)
|
;; Package-Requires: (beacon diminish)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -44,7 +44,5 @@
|
||||||
|
|
||||||
(setq inhibit-startup-screen t)
|
(setq inhibit-startup-screen t)
|
||||||
|
|
||||||
;;;###autoload(require 'oni-ui)
|
|
||||||
|
|
||||||
(provide 'oni-ui)
|
(provide 'oni-ui)
|
||||||
;;; oni-ui.el ends here
|
;;; oni-ui.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.0904.210844
|
;; Version: 2021.1123.002400
|
||||||
;; Package-Requires: (vc-p4)
|
;; Package-Requires: (vc-p4)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -29,7 +29,5 @@
|
||||||
(when (eql system-type 'windows-nt)
|
(when (eql system-type 'windows-nt)
|
||||||
(require 'vc-p4))
|
(require 'vc-p4))
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'vc (require 'oni-vc))
|
|
||||||
|
|
||||||
(provide 'oni-vc)
|
(provide 'oni-vc)
|
||||||
;;; oni-vc.el ends here
|
;;; oni-vc.el ends here
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2019.1210.231451
|
;; Version: 2021.1123.002232
|
||||||
;; Package-Requires: (web-mode oni-flycheck)
|
;; Package-Requires: (web-mode oni-flycheck)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -51,8 +51,6 @@
|
||||||
(add-hook 'web-mode-hook #'oni-web--whitespace-mode)
|
(add-hook 'web-mode-hook #'oni-web--whitespace-mode)
|
||||||
(add-hook 'web-mode-hook 'oni-web--auto-fill-mode)
|
(add-hook 'web-mode-hook 'oni-web--auto-fill-mode)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'web-mode (require 'oni-web))
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(add-to-list 'auto-mode-alist '("\\.blade\\.php\\'" . web-mode))
|
(add-to-list 'auto-mode-alist '("\\.blade\\.php\\'" . web-mode))
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2021.0622.221406
|
;; Version: 2021.1123.002719
|
||||||
;; Package-Requires: (yaml-mode oni-flycheck oni-highlight-indent-guides flycheck-yamllint indent-tools yaml-imenu)
|
;; Package-Requires: (yaml-mode oni-flycheck oni-highlight-indent-guides flycheck-yamllint indent-tools yaml-imenu)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -46,7 +46,5 @@
|
||||||
|
|
||||||
(flycheck-yamllint-setup)
|
(flycheck-yamllint-setup)
|
||||||
|
|
||||||
;;;###autoload(with-eval-after-load 'yaml-mode (require 'oni-yaml))
|
|
||||||
|
|
||||||
(provide 'oni-yaml)
|
(provide 'oni-yaml)
|
||||||
;;; oni-yaml.el ends here
|
;;; oni-yaml.el ends here
|
||||||
|
|
Loading…
Reference in a new issue