[Misc] Adding some `:ensure t'

This commit is contained in:
Daniel - 2019-11-11 18:21:52 +01:00
parent ff41f4586e
commit ca09c77084
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 24 additions and 1 deletions

25
init.el
View File

@ -1895,6 +1895,7 @@ With given ARG, display files in `db/important-document-path."
:init (setq helm-command-prefix-key "C-c h")) :init (setq helm-command-prefix-key "C-c h"))
(use-package helm (use-package helm
:ensure t
:commands (helm-show-kill-ring) :commands (helm-show-kill-ring)
:diminish helm-mode :diminish helm-mode
:bind (:map helm-command-map :bind (:map helm-command-map
@ -1957,6 +1958,7 @@ With given ARG, display files in `db/important-document-path."
t))) t)))
(use-package ivy (use-package ivy
:ensure t
:commands (ivy-mode :commands (ivy-mode
ivy-resume) ivy-resume)
:diminish ivy-mode :diminish ivy-mode
@ -1973,6 +1975,7 @@ With given ARG, display files in `db/important-document-path."
'(org-capture . completing-read-default))) '(org-capture . completing-read-default)))
(use-package counsel (use-package counsel
:ensure t
:commands (counsel-org-goto-all :commands (counsel-org-goto-all
counsel-ag counsel-ag
counsel-M-x counsel-M-x
@ -1984,6 +1987,7 @@ With given ARG, display files in `db/important-document-path."
counsel-recentf)) counsel-recentf))
(use-package swiper (use-package swiper
:ensure t
:commands (swiper :commands (swiper
swiper-from-isearch)) swiper-from-isearch))
@ -2000,6 +2004,7 @@ With given ARG, display files in `db/important-document-path."
;; * Navigation ;; * Navigation
(use-package ace-window (use-package ace-window
:ensure t
:commands (ace-window ace-window-display-mode) :commands (ace-window ace-window-display-mode)
:init (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l) :init (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)
aw-background nil aw-background nil
@ -2007,6 +2012,7 @@ With given ARG, display files in `db/important-document-path."
aw-scope 'frame)) aw-scope 'frame))
(use-package avy (use-package avy
:ensure t
:commands (avy-goto-char-timer :commands (avy-goto-char-timer
avy-goto-word-or-subword-1 avy-goto-word-or-subword-1
avy-goto-line)) avy-goto-line))
@ -2021,9 +2027,11 @@ With given ARG, display files in `db/important-document-path."
:init (setq dumb-jump-selector 'helm)) :init (setq dumb-jump-selector 'helm))
(use-package helm-pages (use-package helm-pages
:ensure t
:commands (helm-pages)) :commands (helm-pages))
(use-package eyebrowse (use-package eyebrowse
:ensure t
:commands (eyebrowse-mode) :commands (eyebrowse-mode)
:init (setq eyebrowse-keymap-prefix (kbd "C-c w"))) :init (setq eyebrowse-keymap-prefix (kbd "C-c w")))
@ -2279,6 +2287,7 @@ With given ARG, display files in `db/important-document-path."
;; General Stuff first ;; General Stuff first
(use-package lispy (use-package lispy
:ensure t
:commands (lispy-mode) :commands (lispy-mode)
:diminish lispy-mode) :diminish lispy-mode)
@ -2525,6 +2534,7 @@ With given ARG, display files in `db/important-document-path."
;; provide optional functionality and may redefine builtin commands. ;; provide optional functionality and may redefine builtin commands.
(use-package cperl-mode (use-package cperl-mode
:ensure t
:commands (cperl-mode) :commands (cperl-mode)
:init (progn :init (progn
;; replace perl-mode with cperl-mode ;; replace perl-mode with cperl-mode
@ -2539,6 +2549,7 @@ With given ARG, display files in `db/important-document-path."
(add-hook 'cperl-mode-hook 'prettify-symbols-mode))) (add-hook 'cperl-mode-hook 'prettify-symbols-mode)))
(use-package crux (use-package crux
:ensure t
:commands (crux-eval-and-replace :commands (crux-eval-and-replace
crux-smart-open-line-above crux-smart-open-line-above
crux-kill-whole-line crux-kill-whole-line
@ -2549,13 +2560,16 @@ With given ARG, display files in `db/important-document-path."
:commands (projects-add-project projects-archive-project)) :commands (projects-add-project projects-archive-project))
(use-package define-word (use-package define-word
:ensure t
:commands (define-word-at-point define-word)) :commands (define-word-at-point define-word))
(use-package dictcc (use-package dictcc
:ensure t
:commands (dictcc) :commands (dictcc)
:config (require 'gnutls)) :config (require 'gnutls))
(use-package edit-list (use-package edit-list
:ensure t
:commands edit-list) :commands edit-list)
(use-package electric (use-package electric
@ -2570,6 +2584,7 @@ With given ARG, display files in `db/important-document-path."
(add-to-list 'electric-pair-text-pairs '(?„ . ?“)))) (add-to-list 'electric-pair-text-pairs '(?„ . ?“))))
(use-package elpy (use-package elpy
:ensure t
:commands (elpy-enable)) :commands (elpy-enable))
(use-package eproject (use-package eproject
@ -2627,6 +2642,7 @@ With given ARG, display files in `db/important-document-path."
:commands highlight-indentation-mode) :commands highlight-indentation-mode)
(use-package iedit (use-package iedit
:ensure t
:commands (iedit-mode)) :commands (iedit-mode))
(use-package key-chord (use-package key-chord
@ -2646,6 +2662,7 @@ With given ARG, display files in `db/important-document-path."
:commands (mastodon)) :commands (mastodon))
(use-package multiple-cursors (use-package multiple-cursors
:ensure t
:commands (mc/edit-lines :commands (mc/edit-lines
mc/mark-next-like-this mc/mark-next-like-this
mc/mark-previous-like-this mc/mark-previous-like-this
@ -2716,6 +2733,7 @@ With given ARG, display files in `db/important-document-path."
:init (setq toe-highscore-file nil)) :init (setq toe-highscore-file nil))
(use-package undo-tree (use-package undo-tree
:ensure t
:commands (global-undo-tree-mode :commands (global-undo-tree-mode
undo undo
undo-tree-redo) undo-tree-redo)
@ -2723,13 +2741,17 @@ With given ARG, display files in `db/important-document-path."
undo-tree-visualizer-diff t) undo-tree-visualizer-diff t)
:diminish undo-tree-mode) :diminish undo-tree-mode)
(use-package vlf-setup) (use-package vlf-setup
:ensure vlf
:defer t)
(use-package wgrep (use-package wgrep
:ensure t
:commands (wgrep-finish-edit :commands (wgrep-finish-edit
wgrep-change-to-wgrep-mode)) wgrep-change-to-wgrep-mode))
(use-package which-key (use-package which-key
:ensure t
:commands (which-key-mode) :commands (which-key-mode)
:diminish which-key-mode :diminish which-key-mode
:init (setq which-key-side-window-max-width 0.33 :init (setq which-key-side-window-max-width 0.33
@ -2737,6 +2759,7 @@ With given ARG, display files in `db/important-document-path."
:config (which-key-setup-side-window-bottom)) :config (which-key-setup-side-window-bottom))
(use-package yasnippet (use-package yasnippet
:ensure t
:commands (yas-minor-mode-on yas-minor-mode) :commands (yas-minor-mode-on yas-minor-mode)
:diminish yas-minor-mode :diminish yas-minor-mode
:config (yas-reload-all)) :config (yas-reload-all))