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

View File

@ -1,6 +1,6 @@
;;; buffers.el --- Default settings for buffers. -*- lexical-binding: t; -*- ;;; 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: ;;; Commentary:
;; * Setup scratch buffer. ;; * Setup scratch buffer.
@ -68,7 +68,6 @@
;; Dedicate windows to “purposes”. ;; Dedicate windows to “purposes”.
(use-package window-purpose (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. :demand t ; projectile depends on window-purpose.
:config (progn :config (progn
(purpose-mode) (purpose-mode)

View File

@ -1,6 +1,6 @@
;;; ui.el --- Configure user interfaces. -*- lexical-binding: t; -*- ;;; 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: ;;; Commentary:
;; * treemacs ;; * treemacs
@ -13,7 +13,6 @@
(require 'basics/package-management) (require 'basics/package-management)
(use-package treemacs (use-package treemacs
;; :pin melpa ; We need > 2.6 for lsp-treemacs.
:demand t :demand t
:after (display-line-numbers) :after (display-line-numbers)
:custom ((treemacs-project-follow-cleanup t) ; Collapse projects when leaving. :custom ((treemacs-project-follow-cleanup t) ; Collapse projects when leaving.
@ -29,7 +28,6 @@
:after (treemacs projectile)) :after (treemacs projectile))
(use-package treemacs-magit (use-package treemacs-magit
;; :pin melpa ; See treemacs.
:after (treemacs magit)) :after (treemacs magit))
;; Completion in many Emacs commands. ;; Completion in many Emacs commands.

View File

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