summaryrefslogtreecommitdiff
path: root/.config/emacs
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-25 00:43:24 +0300
committerThomas Voss <mail@thomasvoss.com> 2023-08-25 00:43:24 +0300
commita6afe32f76cfaaaf52befba24c5634e1f3ed1912 (patch)
tree42acb7563b4137af988cbfc4cb104eee1abdfa8f /.config/emacs
parent5d7cd83c10d6c9fb7a5046b367b579c25829b702 (diff)
emacs: We need to use ‘lambda’ here
Diffstat (limited to '.config/emacs')
-rw-r--r--.config/emacs/config.org2
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