Experimenting with mini-frame

This commit is contained in:
Emmet 2024-04-01 12:40:43 -05:00
parent a75bf903ae
commit 06ef9c5b77
3 changed files with 24 additions and 0 deletions

View file

@ -190,6 +190,17 @@
;; For camelCase ;; For camelCase
(global-subword-mode 1) (global-subword-mode 1)
;; Mini-frames
(setq mini-frame-show-parameters
'((left . 0.5)
(top . 10)
(width . 0.6)
(height . 15))
)
(setq mini-frame-resize nil)
(setq mini-frame-standalone t)
(mini-frame-mode -1) ;; don't enable this for now since it's kinda slow on my system
;;;------ Registers ------;;; ;;;------ Registers ------;;;
(map! :leader (map! :leader

View file

@ -253,6 +253,17 @@ Doom Emacs is traditionally installed by cloning the repository ([[https://githu
;; For camelCase ;; For camelCase
(global-subword-mode 1) (global-subword-mode 1)
;; Mini-frames
(setq mini-frame-show-parameters
'((left . 0.5)
(top . 10)
(width . 0.6)
(height . 15))
)
(setq mini-frame-resize nil)
(setq mini-frame-standalone t)
(mini-frame-mode -1) ;; don't enable this for now since it's kinda slow on my system
#+END_SRC #+END_SRC
** Registers ** Registers
#+BEGIN_SRC emacs-lisp :tangle config.el #+BEGIN_SRC emacs-lisp :tangle config.el
@ -1930,6 +1941,7 @@ Any git package can be configured for a particular commit or branch:
(package! org-ql) (package! org-ql)
(package! persist) (package! persist)
(package! sudo-edit) (package! sudo-edit)
(package! mini-frame)
#+END_SRC #+END_SRC
* Nix Integration * Nix Integration
In order to have Nix load my Doom Emacs configuration [[./doom.nix][doom.nix]], which I source in the =imports= block of my [[../../../profiles/work/home.nix][home.nix]]. In order to have Nix load my Doom Emacs configuration [[./doom.nix][doom.nix]], which I source in the =imports= block of my [[../../../profiles/work/home.nix][home.nix]].

View file

@ -30,3 +30,4 @@
(package! org-ql) (package! org-ql)
(package! persist) (package! persist)
(package! sudo-edit) (package! sudo-edit)
(package! mini-frame)