13 lines
300 B
Fish
13 lines
300 B
Fish
# Prompt theme
|
|
|
|
# Change "default" to preferred theme name
|
|
set -g FISH_PROMPT_THEME default
|
|
#set -g FISH_PROMPT_THEME compact
|
|
|
|
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 |