From 4afdcf56fcdf3f7b67c6b6bf3cad46245d98875c Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 29 May 2012 21:14:19 -0700 Subject: [PATCH] Tweak a few default colors Fix the make_pkg script to actually build an installable package that doesn't immediately barf --- build_tools/make_pkg.sh | 2 +- share/functions/__fish_config_interactive.fish | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build_tools/make_pkg.sh b/build_tools/make_pkg.sh index ccc5d5d8d..3a9986e52 100755 --- a/build_tools/make_pkg.sh +++ b/build_tools/make_pkg.sh @@ -2,7 +2,7 @@ rm -rf /tmp/fish_pkg mkdir -p /tmp/fish_pkg/ -if make install prefix=/tmp/fish_pkg/usr/local/ +if make DESTDIR=/tmp/fish_pkg install then echo "Root written to /tmp/fish_pkg/" if /Developer/usr/bin/packagemaker --doc ./build_tools/fish_shell.pmdoc --out ~/fish_built/fishfish.pkg diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish index 2817356e2..b0ce6c85c 100644 --- a/share/functions/__fish_config_interactive.fish +++ b/share/functions/__fish_config_interactive.fish @@ -97,7 +97,8 @@ function __fish_config_interactive -d "Initializations that should be performed # Regular syntax highlighting colors set_default fish_color_normal normal - set_default fish_color_command green + set_default fish_color_command 005fd7 + set_default fish_color_param 00afff set_default fish_color_redirection normal set_default fish_color_comment red set_default fish_color_error red --bold