(Emacs/config)~Moved save-hist configuration to Small packages
This commit is contained in:
@@ -55,13 +55,6 @@ temporary customisation) in the etc folder.
|
|||||||
:config
|
:config
|
||||||
(global-auto-revert-mode 1))
|
(global-auto-revert-mode 1))
|
||||||
#+end_src
|
#+end_src
|
||||||
** History saving for minibuffer
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package savehist
|
|
||||||
:straight nil
|
|
||||||
:config
|
|
||||||
(savehist-mode t))
|
|
||||||
#+end_src
|
|
||||||
* Custom functionality
|
* Custom functionality
|
||||||
Functions that don't require a packages to work other than Emacs,
|
Functions that don't require a packages to work other than Emacs,
|
||||||
which means I can define them early. These are used much later in the
|
which means I can define them early. These are used much later in the
|
||||||
@@ -777,6 +770,13 @@ eating up memory.
|
|||||||
(leader
|
(leader
|
||||||
"qm" #'memory-report))
|
"qm" #'memory-report))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Save minibuffer history
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package savehist
|
||||||
|
:straight nil
|
||||||
|
:config
|
||||||
|
(savehist-mode t))
|
||||||
|
#+end_src
|
||||||
* Applications (loading)
|
* Applications (loading)
|
||||||
Emacs is basically an operating system whose primary datatype is text.
|
Emacs is basically an operating system whose primary datatype is text.
|
||||||
Applications are interfaces/environments which serve a variety of
|
Applications are interfaces/environments which serve a variety of
|
||||||
|
|||||||
Reference in New Issue
Block a user