Skip to content
Snippets Groups Projects
Commit ec516656 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Merge branch 'master' of gitlab-ssh.univ-lille.fr:michael.hauspie/emacs

parents 05bd1193 9585a3d3
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,16 @@ 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
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)
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment