diff --git a/fish/functions/fish_colors.fish b/fish/functions/fish_colors.fish new file mode 100644 index 0000000..9c492f6 --- /dev/null +++ b/fish/functions/fish_colors.fish @@ -0,0 +1,5 @@ +function fish_colors --description 'Print the fish color variables' + for i in (set -n | string match 'fish*_color*') + echo $i (set_color $$i)$$i(set_color normal) + end +end