Move all of the package installation from the default package.el to quelpa. This has the main advantage of being able to update packages better. I have also got a few package coming from forks and custom repos. This also removes all of the `ensure t` from the use-package statements as we have already set `use-package-always-ensure` so its not needed.
11 lines
311 B
EmacsLisp
11 lines
311 B
EmacsLisp
;;; puppet.el --- AMACS -*- lexical-binding: t; -*-
|
|
;;
|
|
;; Copyright 2021 Practically.io All rights reserved
|
|
;;
|
|
;; Use of this source is governed by a BSD-style
|
|
;; licence that can be found in the LICENCE file or at
|
|
;; https://www.practically.io/copyright/
|
|
|
|
(use-package puppet-mode
|
|
:defer
|
|
:mode "\\.pp\\'")
|