2015-11-01 02:05:48 +00:00
< img src = "https://cdn.rawgit.com/oh-my-fish/oh-my-fish/e4f1c2e0219a17e2c748b824004c8d0b38055c16/docs/logo.svg" align = "left" width = "192px" height = "192px" / >
2015-09-27 03:19:20 +00:00
< img align = "left" width = "0" height = "192px" hspace = "10" / >
2015-08-26 17:04:34 +00:00
2015-09-05 15:45:24 +00:00
> The <a href="http://fishshell.com">Fishshell</a> Framework
2015-08-26 15:20:13 +00:00
2015-09-26 15:59:14 +00:00
[![MIT License ](https://img.shields.io/badge/license-MIT-007EC7.svg?style=flat-square )](/LICENSE.md) [![Fish Shell Version ](https://img.shields.io/badge/fish-v2.2.0-007EC7.svg?style=flat-square )](http://fishshell.com) [![Travis Build Status ](http://img.shields.io/travis/oh-my-fish/oh-my-fish.svg?style=flat-square )](https://travis-ci.org/oh-my-fish/oh-my-fish) [![Slack Status ](https://oh-my-fish-slack.herokuapp.com/badge.svg )](https://oh-my-fish-slack.herokuapp.com)
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
Oh My Fish provides core infrastructure to allow you to install packages which extend or modify the look of your shell. It's fast, extensible and easy to use.
2015-08-26 16:49:23 +00:00
2015-09-05 15:45:24 +00:00
< br > < br >
2013-05-17 13:05:41 +00:00
2015-09-11 12:23:05 +00:00
< p align = "center" >
< b > English< / b > •
< a href = "docs/zh-CN" > 简体中文< / a >
< / p >
2016-01-14 01:07:57 +00:00
## Installation
2013-05-17 13:05:41 +00:00
2015-08-26 17:04:34 +00:00
```fish
2015-10-20 22:17:49 +00:00
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
2015-08-26 15:20:13 +00:00
omf help
```
2013-05-17 13:05:41 +00:00
2015-08-26 15:20:13 +00:00
Or _download_ and run it yourself:
2015-08-26 17:04:34 +00:00
```fish
2015-10-20 22:17:49 +00:00
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
2015-10-02 23:50:39 +00:00
fish install
2015-08-26 15:20:13 +00:00
```
2015-09-06 05:36:44 +00:00
# Getting Started
2015-08-26 15:20:13 +00:00
Oh My Fish includes a small utility `omf` to fetch and install new packages and themes.
2015-09-06 05:38:03 +00:00
#### `omf update`
2015-08-26 15:20:13 +00:00
2015-09-05 15:48:11 +00:00
Update the framework and installed packages.
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf install` _`[<name>|<url>]`_
2015-08-26 15:20:13 +00:00
2015-08-30 04:39:42 +00:00
Install one _or more_ packages.
2015-08-26 15:20:13 +00:00
2015-08-30 04:39:42 +00:00
- You can install packages directly by URL via `omf install URL`
2015-09-05 15:48:55 +00:00
- When called without arguments, install missing packages from [bundle ](#dotfiles ).
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf list`
2015-08-26 15:20:13 +00:00
List installed packages.
2015-09-06 05:38:03 +00:00
#### `omf theme` _`<theme>`_
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
Apply a theme. To list available themes, type `omf theme` . You can also [preview available themes ](./docs/Themes.md ) before installing.
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf remove` _`<name>`_
2015-08-26 15:20:13 +00:00
Remove a theme or package.
2016-01-14 00:42:04 +00:00
> Packages subscribed to `uninstall_<pkg>` events are notified before the package is removed, so custom cleanup of resources can be done. See [Uninstall](/docs/en-US/Packages.md#uninstall) for more information.
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf new pkg | theme` _`<name>`_
2015-08-26 15:20:13 +00:00
Scaffold out a new package or theme.
2015-08-27 17:56:01 +00:00
> This creates a new directory under `$OMF_CONFIG/{pkg | themes}/` with a template.
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf submit` _`pkg/<name>`_ _`[<url>]`_
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
Add a new package. To add a theme, use `omf submit` _`themes/<name>`_ _`<url>`_ .
2015-08-26 15:20:13 +00:00
Make sure to [send us a PR][omf-pulls-link] to update the registry.
2015-10-02 21:39:12 +00:00
#### `omf doctor`
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
Use to troubleshoot before [opening an issue][omf-issues-new].
2015-08-26 15:20:13 +00:00
2015-09-06 05:38:03 +00:00
#### `omf destroy`
2015-08-26 15:20:13 +00:00
2015-09-06 02:37:42 +00:00
Uninstall Oh My Fish.
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
## Advanced
2015-08-26 15:20:13 +00:00
2015-09-07 00:53:02 +00:00
Oh My Fish installer places its startup code in your fish config file (`~/.config/fish/config.fish`).
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
### Startup
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
Every time you open a new shell, the startup code initializes Oh My Fish installation path and the _config_ path (`~/.config/omf` by default), sourcing the [`init.fish` ](init.fish ) script afterwards, which autoloads packages, themes and your custom init files.
2015-08-26 15:20:13 +00:00
2016-01-14 01:07:57 +00:00
For more information check the [FAQ ](docs/en-US/FAQ.md#what-does-oh-my-fish-do-exactly ).
2015-08-30 04:40:15 +00:00
2016-01-14 01:07:57 +00:00
### Dotfiles
The `$OMF_CONFIG` directory represents the user state of Oh My Fish. It is the perfect
2015-09-27 22:36:30 +00:00
candidate for being added to your dotfiles and/or checked out to version control. There are four important files:
2015-08-30 04:40:15 +00:00
- __`theme`__ - The current theme
- __`bundle`__ - List of currently installed packages/themes
2015-09-27 22:36:30 +00:00
- __`init.fish`__ - Custom script sourced after shell start
- __`before.init.fish`__ - Custom script sourced before shell start
2015-09-27 04:15:49 +00:00
It's highly recommended that your custom startup commands go into `init.fish` file instead of `~/.config/fish/config.fish` , as this allows you to keep the whole `$OMF_CONFIG` directory under version control.
2015-08-30 04:40:15 +00:00
2015-09-27 22:36:30 +00:00
If you need startup commands to be run *before* Oh My Fish begins loading plugins, place them in `before.init.fish` instead. If you're unsure, it is usually best to put things in `init.fish` .
2016-01-14 01:07:57 +00:00
#### About the bundle
2015-08-30 04:40:15 +00:00
2016-01-14 01:07:57 +00:00
Every time a package/theme is installed or removed, the `bundle` file is updated. You can also edit it manually and run `omf install` afterwards to satisfy the changes. Please note that while packages/themes added to the bundle get automatically installed, a package/theme removed from bundle isn't removed from user installation.
2015-08-30 04:40:15 +00:00
2015-09-06 05:28:12 +00:00
## Creating Packages
2015-10-06 02:14:53 +00:00
Oh My Fish uses an advanced and well defined plugin architecture to ease plugin development, including init/uninstall events and function autoloading. [See the documentation ](docs/en-US/Packages.md ) for more details.
2015-09-06 05:28:12 +00:00
2015-08-26 15:20:13 +00:00
[fishshell]: http://fishshell.com
2015-01-30 00:06:05 +00:00
2015-09-03 18:35:19 +00:00
[contributors]: https://github.com/oh-my-fish/oh-my-fish/graphs/contributors
2013-05-17 13:05:41 +00:00
2015-09-03 18:35:19 +00:00
[omf-pulls-link]: https://github.com/oh-my-fish/oh-my-fish/pulls
2015-10-02 21:39:12 +00:00
[omf-issues-new]: https://github.com/oh-my-fish/oh-my-fish/issues/new