Browse Source

Use vendored use-package

older version doesn't work on emacs 28 so need latest from github
master
Brett Langdon 6 years ago
parent
commit
d23b7160cf
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
2 changed files with 2 additions and 5 deletions
  1. +1
    -1
      emacs.d/custom.el
  2. +1
    -4
      emacs.d/init.el

+ 1
- 1
emacs.d/custom.el View File

@ -4,7 +4,7 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
'(python-black cython-mode scss-mode vue-mode tide rust-mode company-auctex tex-site auctex sphinx-doc company-lsp lsp-ui lsp-mode ws-butler use-package smartparens pip-requirements osx-clipboard monokai-theme markdown-mode helm-projectile helm-ag godoctor go-guru go-eldoc go-autocomplete flycheck-gometalinter doom-modeline dockerfile-mode docker-compose-mode diminish company-go company-anaconda)))
'(go-mode company projectile helm python-black cython-mode scss-mode vue-mode tide rust-mode company-auctex tex-site auctex sphinx-doc company-lsp lsp-ui lsp-mode ws-butler use-package smartparens pip-requirements osx-clipboard monokai-theme markdown-mode helm-projectile helm-ag godoctor go-guru go-eldoc go-autocomplete flycheck-gometalinter doom-modeline dockerfile-mode docker-compose-mode diminish company-go company-anaconda)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.


+ 1
- 4
emacs.d/init.el View File

@ -51,13 +51,10 @@
(when (not package-archive-contents)
(package-refresh-contents))
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
;; Configure use-package
;; https://github.com/jwiegley/use-package
(eval-when-compile
(add-to-list 'load-path "~/.emacs.d/use-package/")
(require 'use-package))
(setq use-package-always-ensure t)


Loading…
Cancel
Save