summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-08-01 16:55:15 -0700
committerFranck Cuny <franck@fcuny.net>2023-08-01 16:55:15 -0700
commitd5e0e0268f52ab79a77e5fd10b71327ff8dc4d2a (patch)
tree8714e10e3f84b0e98df3961819abfd504f283ce8
parentdon't set the mode when tangling the file (diff)
downloademacs.d-d5e0e0268f52ab79a77e5fd10b71327ff8dc4d2a.tar.gz
set `ensure` to `true` for a few packages
Change-Id: I312b4dab64eccdda780d7a725b520f3e257bbabe
-rw-r--r--init.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.org b/init.org
index be0cca1..c440a9a 100644
--- a/init.org
+++ b/init.org
@@ -689,6 +689,7 @@ Invokes [[https://direnv.net/][direnv]] to obtain environment for the current fi
 
 #+begin_src emacs-lisp
 (use-package docker-compose-mode
+  :ensure t
   :mode "docker-compose.*\.yml\\'")
 #+end_src
 
@@ -696,6 +697,7 @@ Invokes [[https://direnv.net/][direnv]] to obtain environment for the current fi
 
 #+begin_src emacs-lisp
 (use-package dockerfile-mode
+  :ensure t
   :mode "Dockerfile[a-zA-Z.-]*\\'")
 #+end_src
 
@@ -1049,6 +1051,7 @@ For languages where I want to use LSP, I need to add ~:hook (nix-mode . englot-e
 
 #+begin_src emacs-lisp
 (use-package eglot
+  :ensure t
   :bind (:map eglot-mode-map
               ("C-c l a" . eglot-code-actions)
               ("C-c l r" . eglot-rename)))