diff --git a/configuration.org b/configuration.org index befa462e3fa5e59e3bf07f47f35278bcc5cd11ab..904af774baaa88dc64ff2e8663222919d0695157 100644 --- a/configuration.org +++ b/configuration.org @@ -51,7 +51,17 @@ Sets who I am I use [[https://elpa.gnu.org][Elpa]], [[https://melpa.org][Melpa]] and [[http://orgmode.org][Org mode]] packages repository, thus I need to add them to the =package-archives= list -#+BEGIN_SRC emacs-lisp + For older emacs version, fix some gnutls algorithm priority + + #+BEGIN_SRC emacs-lisp +(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") + #+END_SRC + + #+RESULTS: + : NORMAL:-VERS-TLS1.3 + + + #+BEGIN_SRC emacs-lisp (require 'package) (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) @@ -59,6 +69,8 @@ I use [[https://elpa.gnu.org][Elpa]], [[https://melpa.org][Melpa]] and [[http:// (package-initialize) #+END_SRC + #+RESULTS: + Then, to ensure that packages are installed and that I can launch Emacs on a new computer and have it setup automatically, I use @@ -708,6 +720,8 @@ all buffers. I also set =M-/= to trigger =company-complete= :custom (company-minimum-prefix-length 3) (company-idle-delay 0.1) + (company-show-quick-access "off") + (company-quick-access-hint-function (lambda (param) " unknown")) ) #+end_src