.emacs.d/init.d/misc/misc.el

40 lines
1.0 KiB
EmacsLisp
Raw Permalink Normal View History

2020-05-29 17:19:56 +02:00
;;; misc.el --- Stuff that fits no other category -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'basics/package-management)
2020-06-01 14:29:09 +02:00
;; Many errors, slows things down considerably.
;; ;; Watchdog, noticing and explaining when Emacs acts slow.
;; (use-package explain-pause-mode
;; :demand t
;; :defer 4
;; :diminish explain-pause-mode
;; :straight (explain-pause-mode
;; :type git
;; :host github
;; :repo "lastquestion/explain-pause-mode")
;; :config (explain-pause-mode t))
2020-05-29 17:19:56 +02:00
2020-11-25 02:27:14 +01:00
(use-package gnuplot
:mode ("\\(\\.gp\\|gnuplot\\)$" . gnuplot-mode)
:hook (gnuplot-mode . hl-todo-mode))
2020-11-25 02:27:14 +01:00
2020-12-17 00:33:55 +01:00
;; Error on init, investigate later.
;; ;; Edit subtitles with mpv integration.
;; (use-package subed
;; :straight (subed
;; :type git :host github :repo "rndusr/subed"
;; :files ("subed/*.el")))
2021-06-22 17:19:18 +02:00
;; dap-mode works better with it.
(use-package vterm
:defer 4)
2021-09-29 12:55:27 +02:00
;; Translations to/from german.
(use-package leo)
2020-05-30 08:14:58 +02:00
(provide 'misc/misc)
2020-05-29 17:19:56 +02:00
;;; misc.el ends here