]> git.draconx.ca Git - zshconf.git/blobdiff - zprofile
Don't hardcode /etc/DIR_COLORS.
[zshconf.git] / zprofile
index e3cc07b1940f9db5356bf1a9d6627e334e7b6e3d..223baa497388663f808aa233d89f9c6c7007df44 100644 (file)
--- a/zprofile
+++ b/zprofile
@@ -26,7 +26,15 @@ set -$shopts
 unset sh shopts
 
 # Setup colours
-eval `dircolors --sh /etc/DIR_COLORS`
+eval `dircolors --sh`
 if [[ -n "$LS_COLORS" && -z "$COLORTERM" ]]; then
        export COLORTERM="ansi"
 fi
+
+# Configure terminal parameters
+stty stop ''
+case $KEYMAP in
+colemak)
+       stty eof '^S'
+       ;;
+esac