From: Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com>
To: <tomas@tuxteam.de>
Cc: emacs-orgmode@gnu.org
Subject: Re: Waiting for refresh to finish...
Date: Mon, 27 Jul 2020 19:13:42 +0200 [thread overview]
Message-ID: <87r1sw2855.fsf@mx> (raw)
In-Reply-To: <20200727162812.GB19220@tuxteam.de> (tomas's message of "Mon, 27 Jul 2020 18:28:12 +0200")
Thanks for your help, Tomas, here is the beginning of my init.el
(suggestions to improve it are of course welcome):
(defvar last-file-name-handler-alist file-name-handler-alist)
(setq gc-cons-threshold 602653184
gc-cons-percentage 0.6
file-name-handler-alist nil)
;;; General configuration section
;; Dumped Emacs
;; (when (boundp 'galactic-emacs-pdumper-dumped)
;; ;; Restore `load-path'
;; (setq load-path galactic-emacs-pdumper-load-path)
;; When Emacs starts from dump file, some default modes are not
;; enabled
;; (global-font-lock-mode)
;; (transient-mark-mode))
(when (> emacs-major-version 23)
(require 'package)
(package-initialize)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/")
'APPEND))
;; Configure Emacs package manager. Not required anymore on Emacs > 27
(if (version< emacs-version "27")
(package-initialize) )
(require 'package)
(setq package-archives
'(("melpa" . "https://melpa.org/packages/")
("melpa-stable" . "https://stable.melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
; ("gnu" . "https://elpa.gnu.org/packages/")
))
;; Some combination of GNU TLS and Emacs fail to retrieve archive
;; contents over https.
;; https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/etw48ux
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341
(if (and (version< emacs-version "26.3") (>= libgnutls-version 30600))
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
;; Enable packages signature verification only if GPG is installed
(setq package-check-signature (when (executable-find "gpg") 'allow-unsigned))
;; Change the below priorities if you prefer melpa-stable packages.
;; Higher is better.
(setq package-archive-priorities
'(
("melpa" . 4)
("melpa-stable" . 3)
("org" . 2)
("gnu" . 1)
)
)
;; Bootstrap `use-package'
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-when-compile
(require 'use-package))
(use-package use-package-ensure-system-package
:ensure t)
(setq package-enable-at-startup nil)
;; addendum from scimax
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
--
Joseph
next prev parent reply other threads:[~2020-07-27 17:14 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-27 16:13 Waiting for refresh to finish Joseph Vidal-Rosset
2020-07-27 16:28 ` tomas
2020-07-27 17:13 ` Joseph Vidal-Rosset [this message]
2020-07-27 17:27 ` tomas
2020-07-27 18:00 ` Joseph Vidal-Rosset
2020-07-27 18:28 ` tomas
2020-07-27 19:06 ` Joseph Vidal-Rosset
2020-07-27 19:27 ` tomas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r1sw2855.fsf@mx \
--to=joseph.vidal.rosset@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=tomas@tuxteam.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).