1
0
Fork 0

[oni-core] Add mini-frame configuration

This commit is contained in:
Tom Willemse 2023-04-16 00:30:50 -07:00
parent bd24cb6def
commit 8eb16a8db6

View file

@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2023.0415.204431
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview mixed-pitch ace-window vertico marginalia orderless consult embark docstr)
;; Version: 2023.0416.003045
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview mixed-pitch ace-window vertico marginalia orderless consult embark docstr mini-frame)
;; 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
@ -478,5 +478,16 @@ which normally have their errors suppressed."
(setq native-comp-async-report-warnings-errors 'silent)
;;; Mini frame
(require 'mini-frame)
(setq mini-frame-show-parameters
'((top . 10)
(width . 0.7)
(left . 0.5)))
(mini-frame-mode)
(provide 'oni-core)
;;; oni-core.el ends here