summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schlosser <cschlosser@google.com>2025-06-16 09:27:00 +0000
committerChristoph Schlosser <cschlosser@google.com>2025-06-17 07:07:07 +0000
commitab5b5a0e22272876800bc9a1aca5861d955f2c12 (patch)
tree6110844852fc937f44e9177bb4c24580dae8b35b
parent8f7973ac1b7fe068f526f1da09417f1a2ff8c714 (diff)
downloaddots-ab5b5a0e22272876800bc9a1aca5861d955f2c12.tar.gz
Add script to quickly link all config dirs
-rwxr-xr-xln.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ln.sh b/ln.sh
new file mode 100755
index 0000000..e7e38d6
--- /dev/null
+++ b/ln.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+for dir in bat fzf ripgrep fish nvim; do
+ ln -s "~/dots/$dir" ~/.config/
+done