aboutsummaryrefslogtreecommitdiff
path: root/index.org
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-08 17:07:35 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-08 17:07:35 -0500
commit57667f82145277920ddacf59bf57c0046129bd63 (patch)
tree61dbee1960ab39bd69a1da0010c9f78b4fe6659d /index.org
parent545dfbb53f2bb6d7669ca7bfd1f4775a9150b530 (diff)
move configs to hidden directories
Diffstat (limited to 'index.org')
-rw-r--r--index.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.org b/index.org
index 8c2c940..a8ebf17 100644
--- a/index.org
+++ b/index.org
@@ -3,9 +3,9 @@
This page is the home of my dotfiles. They are written using literate programming in Emacs Org-Mode. The =install= script installs the dotfiles in their correct places and installs itself as an executable called =update-home= on the path to allow myself to run the script without having the repository downloaded on my system.
* Directories
-- [[./config/index.org][.config/]]
-- [[./local/index.org][.local/]]
-- [[./ssh/index.org][.ssh/]]
+- [[./config/][.config/]]
+- [[./local/][.local/]]
+- [[./ssh/][.ssh/]]
* Files
- [[./clang-format.org][.clang-format]]
@@ -62,7 +62,7 @@ If the =update-home= executable has changed, replace it and bootstrap into the n
Extract each configuration file from its literate =.org= file into its correct location by running =org-babel-tangle= on each =.org= file.
#+begin_src sh :tangle ~/.dotfiles/install :mkdirp yes
echo Installing configuration files...
- find -- * -type f -name "*.org" | while read -r file; do
+ find -- . -type f -name "*.org" | while read -r file; do
emacs --batch "${file}" -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log
done
#+end_src