mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08:00
3b97e2d7ec
No more __fish_prompt_* variables.
7 lines
226 B
Fish
7 lines
226 B
Fish
# name: lonetwin
|
|
# author: Steve
|
|
|
|
function fish_prompt --description 'Write out the prompt'
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set_color $fish_color_cwd) (prompt_pwd) (fish_vcs_prompt) (set_color normal) '> '
|
|
end
|