summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/functions.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/snippets/functions.el')
-rw-r--r--.emacs.d/snippets/functions.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/.emacs.d/snippets/functions.el b/.emacs.d/snippets/functions.el
index cab2fa0..64a4af8 100644
--- a/.emacs.d/snippets/functions.el
+++ b/.emacs.d/snippets/functions.el
@@ -106,5 +106,14 @@
(interactive)
(eshell 'N))
+(defun make-mini-buffer ()
+ (interactive)
+ (split-window-below 40)
+ (other-window 1))
+
+(defun make-mini-geiser ()
+ (interactive)
+ (split-window-below 60)
+ (geiser nil))
;;; my-functions.el ends here