18 lines
515 B
Fish
18 lines
515 B
Fish
# Prompt theme
|
|
|
|
# To get a list of available themes:
|
|
# - Check the theme directories in $__fish_sysconf_dir/themes/
|
|
# - Or use the function `fish_list_themes`
|
|
# To print the active prompt theme name:
|
|
# Use function `fish_theme`
|
|
|
|
# Set the theme name in `conf.d/21_overrides.fish`.
|
|
# Example:
|
|
# set -g FISH_PROMPT_THEME minimaline
|
|
# Default: "default"
|
|
# The theme name must match the theme directory name.
|
|
set -q FISH_PROMPT_THEME
|
|
or set -g FISH_PROMPT_THEME default
|
|
|
|
# Load theme
|
|
fish_load_theme $FISH_PROMPT_THEME |