Home

Awesome

Pure.fish

A Pure-inspired prompt for fish shell. It’s very similar to Pure, but not identical—it’s not intended to have feature parity.

Screenshot of Pure.fish

TL;DR

Installation

fish doesn’t have any kind of plugin system so you just have to download the file and save it as ~/.config/fish/functions/fish_prompt.fish.

Here’s a one-liner you can run.

curl https://raw.githubusercontent.com/brandonweiss/pure.fish/master/fish_prompt.fish > ~/.config/fish/functions/fish_prompt.fish

To make it easier to update you can clone this repo and then symlink the prompt into place.

git clone https://github.com/brandonweiss/pure.fish.git
ln -s ./pure.fish/fish_prompt.fish ~/.config/fish/functions/fish_prompt.fish

Theme

You can of course use any terminal theme you like, but I think it looks best with Tomorrow Night Eighties and Droid Sans Mono in 15pt (with anti-aliasing on).

Contributing

  1. Fork it ( http://github.com/brandonweiss/pure.fish/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am ‘Add some feature’)
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request