From 57667f82145277920ddacf59bf57c0046129bd63 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Thu, 8 Aug 2024 17:07:35 -0500 Subject: move configs to hidden directories --- index.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'index.org') 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 -- cgit v1.2.3