Remove :pin leftover from old package management.

This commit is contained in:
tastytea 2020-04-10 14:17:47 +02:00
parent ec9a9c563d
commit 72fc9c971d
4 changed files with 6 additions and 18 deletions

View File

@ -1,6 +1,6 @@
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-27T20:25:16+0100>
;; Time-stamp: <2020-04-10T14:17:26+0200>
;;; Commentary:
@ -40,7 +40,6 @@
;; Icon font (required by doom and others).
(use-package all-the-icons
;; :pin melpa ; We need > 3.2.0 for all-the-icons-ivy-rich (issue #4).
:init (defun my/font-installed-p (font-name)
"Check if font with FONT-NAME is available."
(if (find-font (font-spec :name font-name))

View File

@ -1,6 +1,6 @@
;;; buffers.el --- Default settings for buffers. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-30T15:28:08+0200>
;; Time-stamp: <2020-04-10T14:15:45+0200>
;;; Commentary:
;; * Setup scratch buffer.
@ -68,7 +68,6 @@
;; Dedicate windows to “purposes”.
(use-package window-purpose
;; :pin melpa ; We need > 1.7 <https://github.com/bmag/emacs-purpose/issues/158>
:demand t ; projectile depends on window-purpose.
:config (progn
(purpose-mode)

View File

@ -1,6 +1,6 @@
;;; ui.el --- Configure user interfaces. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-24T12:21:05+0100>
;; Time-stamp: <2020-04-10T14:16:00+0200>
;;; Commentary:
;; * treemacs
@ -13,7 +13,6 @@
(require 'basics/package-management)
(use-package treemacs
;; :pin melpa ; We need > 2.6 for lsp-treemacs.
:demand t
:after (display-line-numbers)
:custom ((treemacs-project-follow-cleanup t) ; Collapse projects when leaving.
@ -29,7 +28,6 @@
:after (treemacs projectile))
(use-package treemacs-magit
;; :pin melpa ; See treemacs.
:after (treemacs magit))
;; Completion in many Emacs commands.

View File

@ -1,6 +1,6 @@
;;; git.el --- magit and stuff. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-10T14:06:06+0200>
;; Time-stamp: <2020-04-10T14:17:08+0200>
;;; Commentary:
@ -11,14 +11,10 @@
;; Git integration.
(use-package git-commit
:defer 5
;; :pin melpa
)
:defer 5)
(unless slow-computer
(use-package magit
;; :pin melpa
:custom
(magit-diff-refine-hunk 'all) ; Show word-granularity differences.
@ -45,9 +41,7 @@
)
;; Use libgit rather than git.
(use-package magit-libgit
;; :pin melpa
)
(use-package magit-libgit)
;; Show TODOs in magit-status.
(use-package magit-todos
@ -63,8 +57,6 @@
;; Work with Git forges from Magit.
(use-package forge
;; :pin melpa ; <https://github.com/magit/forge/issues/8>
:after magit
:config