The following are the directories that mise uses. These are the default directories, see Configuration for information on changing the locations.
Tip
If you often find yourself using these directories (as I do), I suggest setting all of them to
~/.mise
for easy access.
This directory stores the global configuration file ~/.config/mise/config.toml
. This is intended to go into your
dotfiles repo to share across machines.
On macOS this is ~/Library/Caches/mise
.
Stores internal cache that mise uses for things like the list of all available versions of a
plugin. Do not share this across machines. You may delete this directory any time mise isn't actively installing something.
Do this with mise cache clear
.
See Cache Behavior for more information.
Used for storing state local to the machine such as which config files are trusted. These should not be shared across machines.
This is the main directory that mise uses and is where plugins and tools are installed into.
It is nearly identical to ~/.asdf
in asdf, so much so that you may be able to get by
symlinking these together and using asdf and mise simultaneously. (Supporting this isn't a
project goal, however).
This directory could be shared across machines but only if they run the same OS/arch. In general I wouldn't advise doing so.
This is where plugins may optionally cache downloaded assets such as tarballs. Use the
always_keep_downloads
setting to prevent mise from removing files from here.
mise installs plugins to this directory when running mise plugins install
. If you are working on a
plugin, I suggest
symlinking it manually by running:
ln -s ~/src/mise-my-tool ~/.local/share/mise/plugins/my-tool
This is where tools are installed to when running mise install
. For example, mise install [email protected]
will install to ~/.local/share/mise/installs/node/20.0.0
This will also create other symlinks to this directory for version prefixes ("20" and "20.15") and matching aliases ("lts", "latest"). For example:
$ tree ~/.local/share/mise/installs/node
20 -> ./20.15.0
20.15 -> ./20.15.0
lts -> ./20.15.0
latest -> ./20.15.0
This is where mise places shims. Generally these are used for IDE integration or if mise activate
does not work for some reason.