We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2be4878 commit 9c2c776Copy full SHA for 9c2c776
1 file changed
shared/tools/emacs/config/config.org
@@ -755,11 +755,22 @@ Use =C-h .= to look up documentation of thing at point.
755
(setq eldoc-echo-area-prefer-doc-buffer t)
756
#+end_src
757
** Mise
758
+Shared mise configuration:
759
#+begin_src elisp
760
(use-package mise
761
:ensure t
762
:hook (after-init . global-mise-mode))
763
764
+
765
+macOS-specific PATH and mise executable:
766
+#+begin_src elisp :tangle (if (eq system-type 'darwin) "yes" "no")
767
+(use-package exec-path-from-shell
768
+ :ensure t
769
+ :config
770
+ (exec-path-from-shell-initialize))
771
772
+(setq mise-executable (expand-file-name "~/.local/bin/mise"))
773
+#+end_src
774
** Eglot
775
Attaches eglot to every programming language buffer:
776
#+begin_src emacs-lisp
0 commit comments