Make sure exec-path is loaded properly

This commit is contained in:
Vedang Manerikar 2024-11-17 21:41:26 +05:30
parent 6fd37b448c
commit 492669f14a
3 changed files with 6 additions and 0 deletions

View file

@ -940,6 +940,7 @@ in the function ~prot/enable-variable-pitch~.
#+begin_src emacs-lisp :tangle "unravel-modules/unravel-essentials.el"
(use-package exec-path-from-shell
:ensure t
:demand t
:config
(exec-path-from-shell-initialize))
#+end_src
@ -2455,6 +2456,8 @@ for the ~ls~ manpage to learn about what I have here. In short:
:ensure nil
:commands (dired)
:config
(setq insert-directory-program
(or (executable-find "gls") "/opt/homebrew/bin/gls"))
(setq dired-listing-switches
"-AGFhlv --group-directories-first --time-style=long-iso"))
#+end_src

View file

@ -11,6 +11,8 @@
:ensure nil
:commands (dired)
:config
(setq insert-directory-program
(or (executable-find "gls") "/opt/homebrew/bin/gls"))
(setq dired-listing-switches
"-AGFhlv --group-directories-first --time-style=long-iso"))

View file

@ -19,6 +19,7 @@
(use-package exec-path-from-shell
:ensure t
:demand t
:config
(exec-path-from-shell-initialize))