aboutsummaryrefslogtreecommitdiffstats
path: root/oni-core.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2023-04-16 00:30:50 -0700
committerGravatar Tom Willemse2023-04-16 00:30:50 -0700
commit8eb16a8db6424eeca3fc82bdd806529edd94bd5e (patch)
tree7ca9735dba1303cf5fe5fe1fb8ac9c958691a2d7 /oni-core.el
parentbd24cb6defc34e290d4391122d8f654b423515a1 (diff)
downloademacs-config-8eb16a8db6424eeca3fc82bdd806529edd94bd5e.tar.gz
emacs-config-8eb16a8db6424eeca3fc82bdd806529edd94bd5e.zip
[oni-core] Add mini-frame configuration
Diffstat (limited to 'oni-core.el')
-rw-r--r--oni-core.el15
1 files changed, 13 insertions, 2 deletions
diff --git a/oni-core.el b/oni-core.el
index a0a20a5..b18560b 100644
--- a/oni-core.el
+++ b/oni-core.el
@@ -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