diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-28 18:04:14 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-28 18:04:14 +0100 |
commit | 5bb16f1ccae7af462cde41f51531d042d77b7256 (patch) | |
tree | 27800a1ae3d206859dc828ba81190bcc51d6cc78 | |
parent | 87d147264c810b3ead8d079b10d23767588d3ebb (diff) | |
download | dotfiles-5bb16f1ccae7af462cde41f51531d042d77b7256.tar.gz dotfiles-5bb16f1ccae7af462cde41f51531d042d77b7256.tar.bz2 dotfiles-5bb16f1ccae7af462cde41f51531d042d77b7256.zip |
(Emacs)~theme personal->personal-primary, +results=none
+new theme with better colours
+result for header args to make loading lisp less annoying (don't
insert your results)
-rw-r--r-- | Emacs/.config/emacs/config.org | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 16385db..b4d0597 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1,7 +1,7 @@ #+title: Emacs configuration #+author: Aryadev Chavali #+description: My new Emacs configuration -#+property: header-args:emacs-lisp :tangle config.el :comments link +#+property: header-args:emacs-lisp :tangle config.el :comments link :results none #+options: toc:nil #+begin_center @@ -141,8 +141,11 @@ common use of this macro. ,@current-lisp))) #+end_src * Aesthetics -Load my custom "personal-theme" theme which is stored in the Emacs lisp -folder (look at [[file:elisp/personal-theme.el][this file]]). +Load my custom "personal-primary-theme" theme which is stored in the +Emacs lisp folder (look at [[file:elisp/personal-primary-theme.el][this file]]). + +I have an older version of this theme that uses a homogeneous colour +theme [[file:elisp/personal-theme.el][(this file]]) #+begin_src emacs-lisp (use-package custom :demand t @@ -150,7 +153,7 @@ folder (look at [[file:elisp/personal-theme.el][this file]]). :init (setq custom-theme-directory (concat user-emacs-directory "elisp/")) :config - (load-theme 'personal t)) + (load-theme 'personal-primary t)) #+end_src Set font size to 125. |