From b0e9525fab9517aac2eccf6ea3dc34b93a1ea472 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 13 May 2020 02:46:17 +0200 Subject: [PATCH] Emacs: Replace :ensure with :straight. --- init.d/net/server.el | 4 ++-- init.d/programming/c++.el | 5 ++--- init.d/programming/common.el | 4 ++-- init.d/text/misc.el | 4 ++-- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/init.d/net/server.el b/init.d/net/server.el index 37d3c3e..9282c94 100644 --- a/init.d/net/server.el +++ b/init.d/net/server.el @@ -1,6 +1,6 @@ ;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-04-25T17:36:34+0200> +;; Time-stamp: <2020-05-09T17:51:29+0200> ;;; Commentary: @@ -12,7 +12,7 @@ ;; Edit remote files. (unless slow-computer (use-package tramp - :straight nil + :straight nil ; Use built-in version. :defer 2 :custom diff --git a/init.d/programming/c++.el b/init.d/programming/c++.el index 70f4ca9..3a6f514 100644 --- a/init.d/programming/c++.el +++ b/init.d/programming/c++.el @@ -1,6 +1,6 @@ ;;; c++.el --- C++ settings. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-05-05T21:04:11+0200> +;; Time-stamp: <2020-05-09T17:42:59+0200> ;;; Commentary: @@ -138,8 +138,7 @@ ) (when (executable-find "clang-format") - (use-package clang-format - :ensure nil)) ; Installed by clang. + (use-package clang-format)) (provide 'programming/c++) ;;; c++.el ends here diff --git a/init.d/programming/common.el b/init.d/programming/common.el index 97c5a06..bc30acf 100644 --- a/init.d/programming/common.el +++ b/init.d/programming/common.el @@ -1,6 +1,6 @@ ;;; common.el --- Common programming settings. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-04-20T21:27:05+0200> +;; Time-stamp: <2020-05-09T17:41:42+0200> ;;; Commentary: @@ -240,7 +240,7 @@ year if mode is derived from prog-mode." ;; Make bug references clickable. (use-package bug-reference - :ensure nil ; Inbuilt. + :straight nil ; Inbuilt. :config (put 'bug-reference-url-format 'safe-local-variable #'stringp) :hook (prog-mode . bug-reference-prog-mode)) diff --git a/init.d/text/misc.el b/init.d/text/misc.el index d1276f1..45b3f77 100644 --- a/init.d/text/misc.el +++ b/init.d/text/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-05-09T03:31:03+0200> +;; Time-stamp: <2020-05-09T17:36:36+0200> ;;; Commentary: @@ -108,7 +108,7 @@ ;; Document editing, formatting, and organizing mode. (use-package org - :ensure nil ; Use built-in version. + :straight nil ; Use built-in version. :defines (org-default-notes-file) :commands (org-mode) :custom ((org-support-shift-select t) ; Make shift behave normally on text.