emacs: open pdfs in external reader, disable writegood mode

This commit is contained in:
Julian Mutter 2023-05-22 10:33:13 +02:00
parent 185e20fe1a
commit de79477a1f
3 changed files with 9 additions and 2 deletions

View File

@ -59,7 +59,11 @@
;; Do not ask before exiting emacs
(setq confirm-kill-emacs nil)
#+end_src
*** Openwith
#+begin_src emacs-lisp :tangle yes
(openwith-mode t)
(setq openwith-associations '(("\\.pdf\\'" "evince" (file))))
#+end_src
** Org
#+begin_src emacs-lisp :tangle yes
(setq org-directory "~/Nextcloud/org"
@ -157,6 +161,8 @@ headline, up to the next headline."
** Spell Checking
#+begin_src emacs-lisp :tangle yes
;; Do not automatically enable writegood mode
(remove-hook! '(org-mode-hook markdown-mode-hook rst-mode-hook asciidoc-mode-hook latex-mode-hook LaTeX-mode-hook) #'writegood-mode)
(use-package! langtool
:init

View File

@ -182,7 +182,7 @@
;;(wanderlust +gmail)
:app
;;calendar
calendar
;;emms
;;everywhere ; *leave* Emacs!? You must be joking
;;irc ; how neckbeards socialize

View File

@ -14,6 +14,7 @@
(unpin! org-roam)
(package! org-roam-ui)
(package! langtool-ignore-fonts)
(package! openwith)
;; To install a package directly from a remote git repo, you must specify a
;; `:recipe'. You'll find documentation on what `:recipe' accepts here: