From a3320a6414058a937189a2e059206da56c21615f Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 16 Mar 2023 17:08:41 +0100 Subject: [PATCH] Update --package --- bundle/bundle--package.el | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index aecc0130..56ee5bd4 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -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)