summaryrefslogtreecommitdiff
path: root/fish/functions
diff options
context:
space:
mode:
author2022-01-07 04:00:27 +0300
committer2022-01-07 04:00:27 +0300
commitf577ae35a99237b0b7bb003fda962afba06971db (patch)
treeff8ad35ef82d05b3f41a98098811136ccbf15a1b /fish/functions
parentAdded fish configs (diff)
downloaddotfiles-f577ae35a99237b0b7bb003fda962afba06971db.tar.gz
dotfiles-f577ae35a99237b0b7bb003fda962afba06971db.tar.bz2
dotfiles-f577ae35a99237b0b7bb003fda962afba06971db.tar.xz
dotfiles-f577ae35a99237b0b7bb003fda962afba06971db.zip
Update
Diffstat (limited to 'fish/functions')
-rw-r--r--fish/functions/fish_prompt.fish51
1 files changed, 0 insertions, 51 deletions
diff --git a/fish/functions/fish_prompt.fish b/fish/functions/fish_prompt.fish
deleted file mode 100644
index 4f28b2c..0000000
--- a/fish/functions/fish_prompt.fish
+++ /dev/null
@@ -1,51 +0,0 @@
-function fish_prompt --description 'Write out the prompt'
- set -l laststatus $status
-
- set -l git_info
- if set -l git_branch (command git symbolic-ref HEAD 2>/dev/null | string replace refs/heads/ '')
- set git_branch (set_color -o blue)"$git_branch"
- set -l git_status
- if not command git diff-index --quiet HEAD --
- if set -l count (command git rev-list --count --left-right $upstream...HEAD 2>/dev/null)
- echo $count | read -l ahead behind
- if test "$ahead" -gt 0
- set git_status "$git_status"(set_color red)⬆
- end
- if test "$behind" -gt 0
- set git_status "$git_status"(set_color red)⬇
- end
- end
- for i in (git status --porcelain | string sub -l 2 | sort | uniq)
- switch $i
- case "."
- set git_status "$git_status"(set_color green)✚
- case " D"
- set git_status "$git_status"(set_color red)✖
- case "*M*"
- set git_status "$git_status"(set_color green)✱
- case "*R*"
- set git_status "$git_status"(set_color purple)➜
- case "*U*"
- set git_status "$git_status"(set_color brown)═
- case "??"
- set git_status "$git_status"(set_color red)≠
- end
- end
- else
- set git_status (set_color green):
- end
- set git_info "(git$git_status$git_branch"(set_color white)")"
- end
-
- # Disable PWD shortening by default.
- set -q fish_prompt_pwd_dir_length
- or set -lx fish_prompt_pwd_dir_length 0
-
- set_color -b black
- printf '%s%s%s%s%s%s%s%s%s%s%s%s%s' (set_color -o white) '❰' (set_color green) $USER (set_color white) '❙' (set_color yellow) (prompt_pwd) (set_color white) $git_info (set_color white) '❱' (set_color white)
- if test $laststatus -eq 0
- printf "%s✔%s≻%s " (set_color -o green) (set_color white) (set_color normal)
- else
- printf "%s✘%s≻%s " (set_color -o red) (set_color white) (set_color normal)
- end
-end