Compare commits

..

No commits in common. "f36d7971b6fcb0c53d53887adfcdb669d953d488" and "8d695f3998290552dc304bc212d4c2beadef4148" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -96,7 +96,7 @@
:general
("C-c o" #'olivetti-mode)
:custom
(olivetti-body-width 120))
(olivetti-body-width 0.5))
;; Multiple cursors
(use-package evil-multiedit

View File

@ -46,11 +46,6 @@
(use-package eglot
:commands (eglot)
:config
(defun my-eglot-managed-hook ()
(if (eglot-managed-p)
(setq-local corfu-preview-current nil)
(kill-local-variable 'corfu-preview-current)))
(add-hook 'eglot-managed-mode-hook #'my-eglot-managed-hook)
(add-to-list 'eglot-server-programs
'(js-web-mode . ("typescript-language-server" "--stdio")))
(add-to-list 'eglot-server-programs

View File

@ -3,7 +3,6 @@
:mode (("\\.uml\\'" . plantuml-mode)
("\\.plantuml\\'" . plantuml-mode))
:custom
(plantuml-default-exec-mode 'executable)
(plantuml-executable-path (executable-find "plantuml")))
(plantuml-default-exec-mode 'executable))
(provide 'init-plantuml)