Compare commits

..

3 commits

Author SHA1 Message Date
e0829c6714
🐛 (Auctex) Fix elisp code
All checks were successful
Publish / publish (push) Successful in 12s
2024-12-22 21:57:43 +01:00
779954513b
🔧 (org) Tags directly after the headline 2024-12-22 21:57:21 +01:00
9c59edeb1c
💄 Change theme 2024-12-22 21:56:32 +01:00

View file

@ -545,7 +545,7 @@ Installing and enabling ef-themes.
(7 . (variable-pitch 1.2))
(t . (variable-pitch 1.1))))
:config
(load-theme 'ef-light t))
(load-theme 'ef-eagle t))
#+end_src
@ -563,8 +563,8 @@ Add a slight transparency to the frames. Code provided by David Wilson / System
During the last weeks I got used to using a light theme during daytime and a dark theme during nighttime. Luckily the themes based on Atom One are to my liking and the doom package provides a dark and light variant. One thing that was difficult with Emacs was actually switching theme since it involved disabling all current ones (for some reason on one machine there are two enabled while on the other machine its only one) and then loading the correct one. These functions try to make that process easier, at least for now. The long-term goal is to automatically change the theme based on the current system-wide setting.
#+begin_src emacs-lisp
(setq mmk2410/theme-night 'ef-dark)
(setq mmk2410/theme-day 'ef-light)
(setq mmk2410/theme-night 'ef-owl)
(setq mmk2410/theme-day 'ef-eagle)
(defun mmk2410/switch-theme (theme)
(mapcar 'disable-theme custom-enabled-themes)
@ -1139,6 +1139,12 @@ Make indented display of org files the default
(setq org-startup-indented t)
#+end_src
Put tags directly after the headline (avoids line breaks in headlines in combination with ~visual-fill-column~ mode):
#+begin_src emacs-lisp
(setq org-tags-column 0)
#+end_src
** Org font adjustments
I like to have larger headlines in Org for better identifying them. The configuration of [[https://config.daviwil.com/emacs#fonts-and-bullets][David Wilson]] was a large help in this regard.
@ -1809,7 +1815,7 @@ For LaTeX typesetting in Emacs I like to use the great AUCTeX package.
:config
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq TeX-engine 'luatex)C
(setq TeX-engine 'luatex)
(setq-default TeX-master nil))
#+end_src