2022-05-06 19:31:15 +02:00
|
|
|
(use-package all-the-icons
|
|
|
|
:if (display-graphic-p)
|
|
|
|
:commands all-the-icons-install-fonts
|
|
|
|
:init
|
|
|
|
(unless (find-font (font-spec :name "all-the-icons"))
|
|
|
|
(all-the-icons-install-fonts t)))
|
|
|
|
(use-package all-the-icons-dired
|
|
|
|
:if (display-graphic-p)
|
|
|
|
:hook (dired-mode . all-the-icons-dired-mode))
|
|
|
|
(use-package doom-themes
|
2022-12-12 17:32:58 +01:00
|
|
|
:config
|
|
|
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
|
|
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
|
|
|
(load-theme 'doom-one t))
|
2022-05-06 19:31:15 +02:00
|
|
|
(use-package doom-modeline
|
|
|
|
:init (doom-modeline-mode 1)
|
|
|
|
:custom (doom-modeline-height 33))
|
|
|
|
(use-package helpful
|
|
|
|
:commands (helpful-callable helpful-variable helpful-command helpful-key)
|
|
|
|
:bind
|
|
|
|
([remap describe-command] . helpful-command)
|
|
|
|
([remap describe-key] . helpful-key))
|
2021-12-15 17:40:15 +01:00
|
|
|
(use-package rainbow-delimiters
|
|
|
|
:hook (prog-mode . rainbow-delimiters-mode))
|
2022-05-06 19:31:15 +02:00
|
|
|
(use-package olivetti
|
|
|
|
:init (add-hook 'Info-mode-hook (lambda () (olivetti-mode) (setq olivetti-body-width 89)))
|
2022-07-24 20:44:32 +02:00
|
|
|
:custom (olivetti-body-width 82)
|
2022-05-06 19:31:15 +02:00
|
|
|
:bind ("<f6>" . olivetti-mode))
|
|
|
|
(use-package ace-window
|
|
|
|
:init (global-set-key (kbd "M-o") 'ace-window))
|
2021-12-15 17:40:15 +01:00
|
|
|
(use-package emojify
|
|
|
|
:commands emojify-mode)
|
2022-05-02 17:02:05 +02:00
|
|
|
(use-package vertico
|
|
|
|
:init
|
2022-05-06 19:31:15 +02:00
|
|
|
(vertico-mode))
|
|
|
|
(use-package webjump
|
|
|
|
:bind ("C-c j" . webjump)
|
|
|
|
:custom
|
|
|
|
(webjump-sites
|
2022-08-07 22:06:14 +02:00
|
|
|
(append '(("Wikipedia_de" . [simple-query "de.wikipedia.org" "https://de.wikipedia.org/wiki/" ""])
|
|
|
|
("leo.org" . [simple-query "dict.leo.org" "https://dict.leo.org/german-english/" ""]))
|
2022-05-06 19:31:15 +02:00
|
|
|
webjump-sample-sites)))
|