mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-15 19:32:44 +08:00
![Stephen M. Coakley](/assets/img/avatar_default.png)
Replace package database with independently installed package repositories - Add support for fetching and installing from package repositories containing package URLs and metadata - Support multiple package repository sources - Add new repo command - Remove submit command - Enhance describe and search commands - Fix and improve help text for new and adjusted commands - Fix bundle install exit status - Refer to plugins as "plugins" instead of the general term "packages" - Code clarity improvements - Put plugin/theme distinction into package metadata
6 lines
163 B
Fish
6 lines
163 B
Fish
function omf.index.path -d 'Get the path to the local package index'
|
|
set -q XDG_CACHE_HOME
|
|
and echo "$XDG_CACHE_HOME/omf"
|
|
or echo "$HOME/.cache/omf"
|
|
end
|