more font shenanigans
This commit is contained in:
parent
37996698e6
commit
6de83b778f
1 changed files with 15 additions and 0 deletions
|
@ -50,6 +50,21 @@ in {
|
||||||
"mv" = "mv -v";
|
"mv" = "mv -v";
|
||||||
} // cfg.abbrs;
|
} // cfg.abbrs;
|
||||||
|
|
||||||
|
shellInit = ''
|
||||||
|
set -g __fish_git_prompt_char_stateseparator "|"
|
||||||
|
set -g __fish_git_prompt_char_cleanstate ""
|
||||||
|
set -g __fish_git_prompt_char_dirtystate "+"
|
||||||
|
set -g __fish_git_prompt_char_invalidstate "x"
|
||||||
|
set -g __fish_git_prompt_char_stagedstate "*"
|
||||||
|
set -g __fish_git_prompt_char_stashstate "\$"
|
||||||
|
set -g __fish_git_prompt_char_untrackedfiles "%"
|
||||||
|
set -g __fish_git_prompt_char_upstream_ahead "^"
|
||||||
|
set -g __fish_git_prompt_char_upstream_behind "v"
|
||||||
|
set -g __fish_git_prompt_char_upstream_diverged "<>"
|
||||||
|
set -g __fish_git_prompt_char_upstream_equal "="
|
||||||
|
# set __fish_git_prompt_char_upstream_prefix ""
|
||||||
|
'';
|
||||||
|
|
||||||
functions = let
|
functions = let
|
||||||
readlink = lib.getExe' pkgs.coreutils "readlink";
|
readlink = lib.getExe' pkgs.coreutils "readlink";
|
||||||
which = lib.getExe pkgs.which;
|
which = lib.getExe pkgs.which;
|
||||||
|
|
Loading…
Reference in a new issue