umayr / theme-sushi

Sushi theme for Fishshell.
MIT License
23 stars 20 forks source link

Move away from fish_greeting for initialization #4

Open sagebind opened 7 years ago

sagebind commented 7 years ago

Using fish_greeting to define functions and run initialization code for themes should be considered unreliable and breaks in the following cases:

The recommended approach is to lazy-load defaults using set -q ...; or set -g ... and to place functions in individual files in a functions directory.

See the discussion in https://github.com/oh-my-fish/oh-my-fish/issues/483.