Setup the auto-mode-alist more cleanly
This commit is contained in:
parent
b2f67e84ee
commit
83eb4f8606
1 changed files with 5 additions and 1 deletions
|
|
@ -183,7 +183,11 @@
|
||||||
;; EPUB reader
|
;; EPUB reader
|
||||||
(use-package nov
|
(use-package nov
|
||||||
:init
|
:init
|
||||||
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode)))
|
(setq auto-mode-alist
|
||||||
|
(map-merge 'list
|
||||||
|
'(("\\.epub\\'" . nov-mode))
|
||||||
|
auto-mode-alist))
|
||||||
|
)
|
||||||
|
|
||||||
(use-package company
|
(use-package company
|
||||||
:init (global-company-mode)
|
:init (global-company-mode)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue