Make sure exec-path is loaded properly
This commit is contained in:
parent
6fd37b448c
commit
492669f14a
3 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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"))
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
(use-package exec-path-from-shell
|
||||
:ensure t
|
||||
:demand t
|
||||
:config
|
||||
(exec-path-from-shell-initialize))
|
||||
|
||||
|
|
Loading…
Reference in a new issue