Commit 2ecc1fc1 authored by Bruno Pinto's avatar Bruno Pinto Committed by Jorge Bucaran

Use fish's colors

Instead of using custom colors, reuse fish's colors.
Original fish colors here:
https://github.com/fish-shell/oh-my-fish/blob/4d628d5f43dbe8b138605d1f6ecbd762187afd7f/functions/restore_original_fish_colors.fish
parent 2564e744
......@@ -16,10 +16,10 @@ set -g OMF_UNKNOWN_ERR 4
set -g OMF_VERSION "1.0.0"
function omf::em; set_color -o yellow ; end
function omf::dim; set_color -o 888 ; end
function omf::err; set_color -o red ; end
function omf::off; set_color normal ; end
function omf::em; set_color -o $fish_color_match; end
function omf::dim; set_color -o $fish_color_autosuggestion; end
function omf::err; set_color -o $fish_color_error; end
function omf::off; set_color normal; end
function init -a path --on-event init_omf
autoload $path/cli $path/util
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment