From 826ae2bb4b92217deff00de28337baf07ba515e2 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 4 Oct 2020 13:10:27 +0200 Subject: [PATCH] turn of deprecated cl warning, added python-ms autoinstaller --- init.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 9bddcdf..c527294 100644 --- a/init.org +++ b/init.org @@ -90,6 +90,13 @@ This function updates init.el whenever changes in init.org are made. The update :ensure t) #+END_SRC +cl is deprecated in favor for cl-lib, some packages like emmet still depend on cl. +Shut off the compiler warning about it. +Maybe turn it on again at some point before the next major emacs upgrade +#+begin_src emacs-lisp +(setq byte-compile-warnings '(cl-functions)) +#+end_src + * Default settings :PROPERTIES: :ID: 3512d679-d111-4ccd-8372-6fc2acbc0374 @@ -963,7 +970,8 @@ apt install build-essential python3-dev :init (setq lsp-python-ms-executable "~/.config/emacs/mspyls/Microsoft.Python.LanguageServer") - :custom (lsp-python-executable-cmd "python3"))) + :custom ((lsp-python-executable-cmd "python3") + (lsp-python-ms-auto-install-server t)))) #+END_SRC