Only check melpa(https) for archives
- Due to a bug in Emacs 26.2, we have to do a small workaround
This commit is contained in:
parent
a79e204d37
commit
5d8c9ad8e5
2 changed files with 12 additions and 3 deletions
11
config.org
11
config.org
|
|
@ -23,6 +23,17 @@ This configuration requires the installation of :
|
|||
- =ditaa= (for ascii to image generation in org-mode)
|
||||
|
||||
When first checking out this config, run =irony-install-server= to make and install the irony-server.
|
||||
* Workarounds
|
||||
** Emacs 26.2
|
||||
|
||||
Had some problems with downloading the spinner package in Emacs.
|
||||
It is a known bug in Emacs 26.2.
|
||||
https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/
|
||||
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
|
||||
#+END_SRC
|
||||
|
||||
* Utils
|
||||
|
||||
|
|
|
|||
4
init.el
4
init.el
|
|
@ -5,9 +5,7 @@
|
|||
|
||||
;; add melpa-stable to package-archives
|
||||
(add-to-list 'package-archives
|
||||
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa" . "http://melpa.milkbox.net/packages/") t)
|
||||
'("melpa" . "https://melpa.org/packages/") t)
|
||||
(add-to-list 'package-archives
|
||||
'("org" . "https://orgmode.org/elpa/") t)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue