diff --git a/cat b/cat deleted file mode 100644 index e69de29..0000000 diff --git a/fish_prompt.fish b/fish_prompt.fish index 7acbd60..8f0b8d4 100644 --- a/fish_prompt.fish +++ b/fish_prompt.fish @@ -67,10 +67,24 @@ function __toaster_git_status end function fish_prompt - __toaster_color_echo $__toaster_color_blue "# " -# __toaster_color_echo $__toaster_color_purple (__toaster_current_folder) + __toaster_color_echo $__toaster_color_blue "" + printf '[' + switch $fish_bind_mode + case default + set_color --bold red + printf 'n' + case insert + set_color --bold green + printf 'i' + case visual + set_color --bold magenta + printf 'v' + end + set_color normal + printf '] ' __toaster_color_echo $__toaster_color_purple (prompt_pwd) __toaster_git_status + echo - __toaster_color_echo $__toaster_color_pink "\$ " + __toaster_color_echo $__toaster_color_pink "⫸ " end diff --git a/screenshot.png b/screenshot.png index 4fc6e98..d0ae521 100644 Binary files a/screenshot.png and b/screenshot.png differ