diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-25 00:43:24 +0300 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-25 00:43:24 +0300 |
commit | a6afe32f76cfaaaf52befba24c5634e1f3ed1912 (patch) | |
tree | 42acb7563b4137af988cbfc4cb104eee1abdfa8f /.config | |
parent | 5d7cd83c10d6c9fb7a5046b367b579c25829b702 (diff) |
emacs: We need to use ‘lambda’ here
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/config.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index aa0c383..f4f8d9d 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -790,7 +790,7 @@ need some this custom package though. #+BEGIN_SRC elisp (use-package lsp-pyright - :hook (python-ts-mode . (λ (require 'lsp-pyright) (lsp)))) + :hook (python-ts-mode . (lambda () (require 'lsp-pyright) (lsp)))) #+END_SRC |