12 lines
266 B
Fish
12 lines
266 B
Fish
# Prompt theme
|
|
|
|
# Change "default" to preferred theme name
|
|
set -g FISH_PROMPT_THEME default
|
|
|
|
set -l theme_dir ~/.config/fish/themes/$FISH_PROMPT_THEME
|
|
|
|
source $theme_dir/prompt.fish
|
|
|
|
if test -f $theme_dir/right_prompt.fish
|
|
source $theme_dir/right_prompt.fish
|
|
end |