aboutsummaryrefslogtreecommitdiff
path: root/fish/functions
diff options
context:
space:
mode:
Diffstat (limited to 'fish/functions')
l---------fish/functions/br.fish1
-rw-r--r--fish/functions/fish_prompt.fish26
2 files changed, 0 insertions, 27 deletions
diff --git a/fish/functions/br.fish b/fish/functions/br.fish
deleted file mode 120000
index db89866..0000000
--- a/fish/functions/br.fish
+++ /dev/null
@@ -1 +0,0 @@
-/home/kylert/.local/share/broot/launcher/fish/br.fish \ No newline at end of file
diff --git a/fish/functions/fish_prompt.fish b/fish/functions/fish_prompt.fish
deleted file mode 100644
index 57ce705..0000000
--- a/fish/functions/fish_prompt.fish
+++ /dev/null
@@ -1,26 +0,0 @@
-set -g __fish_git_prompt_show_informative_status 1
-set -g __fish_git_prompt_hide_untrackedfiles 1
-set -g __fish_git_prompt_showcolorhints 1
-
-set -g __fish_git_prompt_color_branch magenta --bold
-set -g __fish_git_prompt_showupstream "informative"
-set -g __fish_git_prompt_char_upstream_ahead "↑"
-set -g __fish_git_prompt_char_upstream_behind "↓"
-set -g __fish_git_prompt_char_upstream_prefix ""
-
-set -g __fish_git_prompt_char_stagedstate "•"
-set -g __fish_git_prompt_char_dirtystate "+"
-set -g __fish_git_prompt_char_untrackedfiles "…"
-set -g __fish_git_prompt_char_conflictedstate "x"
-set -g __fish_git_prompt_char_cleanstate "✓"
-
-set -g __fish_git_prompt_color_dirtystate blue
-set -g __fish_git_prompt_color_stagedstate yellow
-set -g __fish_git_prompt_color_invalidstate red
-set -g __fish_git_prompt_color_untrackedfiles $fish_color_normal
-set -g __fish_git_prompt_color_cleanstate green --bold
-
-function fish_prompt
- printf '%s%s%s%s $ ' \
- (set_color $fish_color_cwd) (prompt_pwd) (set_color normal) (fish_git_prompt)
-end