Browse Source

turn of deprecated cl warning, added python-ms autoinstaller

master
Marc 4 years ago
parent
commit
826ae2bb4b
1 changed files with 9 additions and 1 deletions
  1. 10
      init.org

10
init.org

@ -90,6 +90,13 @@ This function updates init.el whenever changes in init.org are made. The update
:ensure t) :ensure t)
#+END_SRC #+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 * Default settings
:PROPERTIES: :PROPERTIES:
:ID: 3512d679-d111-4ccd-8372-6fc2acbc0374 :ID: 3512d679-d111-4ccd-8372-6fc2acbc0374
@ -963,7 +970,8 @@ apt install build-essential python3-dev
:init :init
(setq lsp-python-ms-executable (setq lsp-python-ms-executable
"~/.config/emacs/mspyls/Microsoft.Python.LanguageServer") "~/.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 #+END_SRC

Loading…
Cancel
Save