Update --package

This commit is contained in:
Marcus Kammer 2023-03-16 17:08:41 +01:00
parent d55db4a81e
commit a3320a6414

View file

@ -19,6 +19,12 @@
(use-package htmlize)
(use-package tramp
:ensure nil
:config
(when (eq system-type 'windows-nt)
(setq tramp-default-method "sshx")))
(use-package shrface
:defer t
:config
@ -40,7 +46,9 @@
nov-variable-pitch t)
(require 'shrface)
(setq nov-shr-rendering-functions '((img . nov-render-img) (title . nov-render-title)))
(setq nov-shr-rendering-functions (append nov-shr-rendering-functions shr-external-rendering-functions)))
(setq nov-shr-rendering-functions (append nov-shr-rendering-functions shr-external-rendering-functions))
(when (eq system-type 'windows-nt)
(setq nov-unzip-program "c:/msys64/usr/bin/unzip.exe")))
(use-package eglot
:defer t
@ -270,6 +278,13 @@
("german,english" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-d" "de_DE_frami,en_US") nil utf-8)))
(setq ispell-hunspell-dictionary-alist ispell-local-dictionary-alist))
(use-package plantuml-mode
:defer t
:config
(when (eq system-type 'windows-nt)
(setq plantuml-default-exec-mode 'jar
plantuml-jar-path "~/AppData/Local/Programs/plantuml/plantuml.jar")))
(require 'ido)
(ido-mode t)