diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-21 00:44:26 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-21 00:44:26 +0100 |
commit | b245c298792548353d7402354de74c50f4316a9f (patch) | |
tree | d3f162c5ba51350b6f9fa927b92bd970861cb65c /Emacs | |
parent | a7a495c9761120bfa0ea22e9c94a1ed8fe0d9b1d (diff) | |
download | dotfiles-b245c298792548353d7402354de74c50f4316a9f.tar.gz dotfiles-b245c298792548353d7402354de74c50f4316a9f.tar.bz2 dotfiles-b245c298792548353d7402354de74c50f4316a9f.zip |
(Emacs/config)~Moved save-hist configuration to Small packages
Diffstat (limited to 'Emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 29aca07..9a01969 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -55,13 +55,6 @@ temporary customisation) in the etc folder. :config (global-auto-revert-mode 1)) #+end_src -** History saving for minibuffer -#+begin_src emacs-lisp -(use-package savehist - :straight nil - :config - (savehist-mode t)) -#+end_src * Custom functionality 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 @@ -777,6 +770,13 @@ eating up memory. (leader "qm" #'memory-report)) #+end_src +** Save minibuffer history +#+begin_src emacs-lisp +(use-package savehist + :straight nil + :config + (savehist-mode t)) +#+end_src * Applications (loading) Emacs is basically an operating system whose primary datatype is text. Applications are interfaces/environments which serve a variety of |