Skip to content

Commit

Permalink
README fish docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hanoii committed Apr 3, 2024
1 parent 4d27abe commit f27c6eb
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
<!-- toc -->

- [What is ddev-pimp-my-shell?](#what-is-ddev-pimp-my-shell)
- [fish](#fish)
- [ddev `post-import-db` hook](#ddev-post-import-db-hook)

<!-- tocstop -->

<!-- stoptoc -->

## What is ddev-pimp-my-shell?

This a an addon that adds several nice command line utitlites I use across all
Expand All @@ -30,6 +29,25 @@ It also has:

- Some useful [scripts](pimp-my-shell/scripts)

## fish

This add-on installs:

- https://github.com/jorgebucaran/fisher
- https://github.com/IlanCosman/tide

For tide, it uses the default configuration, if you want to have your own on all
of your ddev projects you can create/edit
`.ddev/homeadditions/.config/fish/conf.d/mytide.fish` with something like the
following:

```fish
if tide --version > /dev/null && not test -f ~/.config/fish/conf.d/.mytide
tide configure --auto --style=Classic --prompt_colors='True color' --classic_prompt_color=Light --show_time=No --classic_prompt_separators=Angled --powerline_prompt_heads=Sharp --powerline_prompt_tails=Flat --powerline_prompt_style='One line' --prompt_spacing=Compact --icons='Many icons' --transient=Yes
touch ~/.config/fish/conf.d/.mytide
end
```

## ddev `post-import-db` hook

I generally have import scripts that I ship either from other add-ons or
Expand Down

0 comments on commit f27c6eb

Please sign in to comment.