(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)
This commit is contained in:
2022-07-28 18:04:14 +01:00
parent 87d147264c
commit 5bb16f1cca

View File

@@ -1,7 +1,7 @@
#+title: Emacs configuration #+title: Emacs configuration
#+author: Aryadev Chavali #+author: Aryadev Chavali
#+description: My new Emacs configuration #+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 #+options: toc:nil
#+begin_center #+begin_center
@@ -141,8 +141,11 @@ common use of this macro.
,@current-lisp))) ,@current-lisp)))
#+end_src #+end_src
* Aesthetics * Aesthetics
Load my custom "personal-theme" theme which is stored in the Emacs lisp Load my custom "personal-primary-theme" theme which is stored in the
folder (look at [[file:elisp/personal-theme.el][this file]]). 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 #+begin_src emacs-lisp
(use-package custom (use-package custom
:demand t :demand t
@@ -150,7 +153,7 @@ folder (look at [[file:elisp/personal-theme.el][this file]]).
:init :init
(setq custom-theme-directory (concat user-emacs-directory "elisp/")) (setq custom-theme-directory (concat user-emacs-directory "elisp/"))
:config :config
(load-theme 'personal t)) (load-theme 'personal-primary t))
#+end_src #+end_src
Set font size to 125. Set font size to 125.