mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Experimenting with mini-frame
This commit is contained in:
parent
a75bf903ae
commit
06ef9c5b77
|
@ -190,6 +190,17 @@
|
|||
;; For camelCase
|
||||
(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 ------;;;
|
||||
|
||||
(map! :leader
|
||||
|
|
|
@ -253,6 +253,17 @@ Doom Emacs is traditionally installed by cloning the repository ([[https://githu
|
|||
;; For camelCase
|
||||
(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
|
||||
** Registers
|
||||
#+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! persist)
|
||||
(package! sudo-edit)
|
||||
(package! mini-frame)
|
||||
#+END_SRC
|
||||
* 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]].
|
||||
|
|
|
@ -30,3 +30,4 @@
|
|||
(package! org-ql)
|
||||
(package! persist)
|
||||
(package! sudo-edit)
|
||||
(package! mini-frame)
|
||||
|
|
Loading…
Reference in a new issue