This commit is contained in:
Marco Thomas
2022-05-16 07:49:58 +02:00
parent 27d0dae22c
commit d76b99cfff
7 changed files with 67 additions and 30 deletions

View File

@@ -226,7 +226,7 @@ Forgive me, but I'm =evil=.
** Appearance
*** Fonts
I mainly use these fonts:
+ =SFMono Nerd Font Mono= as main mono-spaced
+ =SFMono Nerd Font Mono= as main mono-spaced (+ Icons)
+ =JuliaMono= for all other characters
+ =Noto Emoji= to show emojis in emacs
+ =Noto JP= for japanese characters
@@ -566,7 +566,7 @@ I need my =hjkl= :(
#+begin_src emacs-lisp :tangle no
(use-package org-attach-screenshot
:straight t
:config (setq org-attach-screenshot-command-line "gnome-screenshot -a -f %f"
:config (setq ;org-attach-screenshot-command-line "gnome-screenshot -a -f %f"
org-attach-screenshot-auto-refresh "never"
org-attach-screenshot-insertfunction
(lambda (linkfilename)
@@ -580,6 +580,15 @@ I need my =hjkl= :(
"\n[[file:" linkfilename "]]\n\n")))))
#+end_src
*** org-alert
#+begin_src emacs-lisp
(use-package org-alert
:straight t
:config
(setq alert-default-style 'libnotify)
(org-alert-enable))
#+end_src
*** LaTeX Export
Enable LaTeX export with =pdflatex= and use =minted= for code highlighting.
Also fix math =utf8= chars.