summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authornoa2025-02-16 22:30:09 +0800
committernoa2025-02-16 22:30:09 +0800
commit91e3f9bb49169f70b92847e18029bb50e964b00e (patch)
treea2fa3ee65baff18df96b9e932a89c63cfa0e695a /emacs
parentc6113c5dddb527970ea35779e03208594001b775 (diff)
Remove commented :ensure from use-package declarations
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 591f09a..bd53137 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -146,7 +146,6 @@
;; Markdown
(use-package markdown-mode
- ;; :ensure t
:mode ("\\.\\(?:md\\|markdown\\|mkd\\|mdown\\|mkdn\\|mdwn\\)\\'" . markdown-mode)
:custom
(markdown-disable-tooltip-prompt t) ; When inserting a link, only prompt for url and link text
@@ -174,7 +173,6 @@
;; A nicer package for spellchecking
(use-package jinx
:disabled t
- ;; :ensure t
:hook (text-mode . jinx-mode)
:commands (jinx-correct jinx-correct-all)
:config
@@ -439,7 +437,6 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word."
;; Minibuffer candidate completion
;; Display completion candidates vertically
(use-package vertico
- ;; :ensure t
:hook (after-init . vertico-mode)
:custom
(vertico-resize nil) ;; don't shrink when there are less candidates
@@ -474,7 +471,6 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word."
;; Annotations for completing-read
(use-package marginalia
- ;; :ensure t
:defer t
:hook (after-init . marginalia-mode)
;; :custom
@@ -515,7 +511,6 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word."
:hook (after-init . savehist-mode))
(use-package consult
- ;; :ensure t
:defer t
;; :commands (consult-complete-in-region)
:bind
@@ -698,7 +693,6 @@ With prefix argument TIME, also add the current time."
;;; Bibliography management
;; TODO: update this to fit with the new single org file notes system. This way should be easier than the previous method i think.
(use-package ebib
- ;; :ensure t
:defer t
:custom
(ebib-bibtex-dialect 'biblatex)
@@ -715,7 +709,6 @@ With prefix argument TIME, also add the current time."
(ebib-file-associations '(("pdf" . "xdg-open") ("ps" . "gv"))))
(use-package citar
- ;; :ensure t
:defer t
:commands (citar-insert-citation citar-open-files citar-open-notes)
:custom
@@ -904,7 +897,6 @@ With prefix argument TIME, also add the current time."
(use-package pdf-tools
:when (display-graphic-p)
- ;; :ensure t
:magic ("%PDF" . pdf-view-mode)
:config
(pdf-tools-install :no-query))