about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-08 23:33:06 -0600
committerCase Duckworth2021-01-08 23:33:06 -0600
commit372a3317ffb0bf1a77f74852ffc905e1ec292089 (patch)
tree0f891a936c579d0d5c26b8a7c0d25b4a55005087 /config.org
parentCenter mu4e message view (diff)
downloademacs-372a3317ffb0bf1a77f74852ffc905e1ec292089.tar.gz
emacs-372a3317ffb0bf1a77f74852ffc905e1ec292089.zip
Add exec-path-from-shell
Diffstat (limited to 'config.org')
-rw-r--r--config.org18
1 files changed, 17 insertions, 1 deletions
diff --git a/config.org b/config.org index 23918ee..2da6c4e 100644 --- a/config.org +++ b/config.org
@@ -5,7 +5,7 @@
5#+EXPORT_FILE_NAME: README.md 5#+EXPORT_FILE_NAME: README.md
6#+OPTIONS: toc:nil 6#+OPTIONS: toc:nil
7#+BANKRUPTCY_COUNT: 3.2 7#+BANKRUPTCY_COUNT: 3.2
8#+Time-stamp: <2021-01-08 08:46:01 acdw> 8#+Time-stamp: <2021-01-08 23:30:14 acdw>
9 9
10* Basics 10* Basics
11 11
@@ -1867,6 +1867,22 @@ I’m only enabling this at home for now, since it requires building stuff.
1867 ;; TODO : add tokens ... somehow 1867 ;; TODO : add tokens ... somehow
1868 #+end_src 1868 #+end_src
1869 1869
1870* System integration
1871
1872** Linux
1873
1874*** Exec path from shell
1875
1876 #+begin_src emacs-lisp
1877 (at-home
1878 (straight-use-package 'exec-path-from-shell)
1879 (defvar acdw/exec-path-from-shell-initialized nil
1880 "Stores whether we've initialized or not.")
1881 (unless acdw/exec-path-from-shell-initialized
1882 (exec-path-from-shell-initialize)
1883 (setq acdw/exec-path-from-shell-initialized (current-time))))
1884 #+end_src
1885
1870* Appendices 1886* Appendices
1871 1887
1872** Emacs' files 1888** Emacs' files