mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-10 00:59:44 +08:00
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
|