]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

set path and locale at login
authormartin f. krafft <madduck@madduck.net>
Wed, 7 May 2008 18:18:12 +0000 (19:18 +0100)
committermartin f. krafft <madduck@madduck.net>
Wed, 7 May 2008 18:24:31 +0000 (19:24 +0100)
.zsh/zprofile/00_path [changed from symlink to file mode: 0644]
.zsh/zprofile/10_locale [moved from .zsh/zshrc/10_locale with 99% similarity]
.zsh/zshrc/00_path [deleted file]

deleted file mode 120000 (symlink)
index 520b1241d60e5dbb0772bb80257073848e675369..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-../zshrc/00_path
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..bac01d48efab416c56b7cd4b4bdf8105ce608d54
--- /dev/null
@@ -0,0 +1,25 @@
+# zprofile/00_path
+#
+# Adds custom directories to the $PATH
+#
+# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: http://git.madduck.net/v/etc/zsh.git
+#
+
+for p in $HOME/bin $HOME/.bin; do
+  case "$PATH" in
+    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
+    *) PATH="${p}:$PATH";;
+  esac
+done
+
+for p in /usr/lib/surfraw; do
+  case "$PATH" in
+    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
+    *) PATH="${PATH}:$p";;
+  esac
+done
+
+# vim:ft=zsh
similarity index 99%
rename from .zsh/zshrc/10_locale
rename to .zsh/zprofile/10_locale
index 0c693420f56bb1b7fe566f4519fd41994dfb09e1..07cbf4464ad025496699c5b2fc966881ebdbd782 100644 (file)
@@ -1,4 +1,4 @@
-# zshrc/10_locale
+# zprofile/10_locale
 #
 # Defines locale settings
 #
diff --git a/.zsh/zshrc/00_path b/.zsh/zshrc/00_path
deleted file mode 100644 (file)
index bac01d4..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# zprofile/00_path
-#
-# Adds custom directories to the $PATH
-#
-# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
-# Released under the terms of the Artistic Licence 2.0
-#
-# Source repository: http://git.madduck.net/v/etc/zsh.git
-#
-
-for p in $HOME/bin $HOME/.bin; do
-  case "$PATH" in
-    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
-    *) PATH="${p}:$PATH";;
-  esac
-done
-
-for p in /usr/lib/surfraw; do
-  case "$PATH" in
-    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
-    *) PATH="${PATH}:$p";;
-  esac
-done
-
-# vim:ft=zsh