diff options
-rw-r--r-- | config.org | 18 |
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 |