2020-07-12 21:12:56 +03:00
# 🌊 Tide [![release_badge][]][releases] [![ci_badge][]][ci] [![fish_version_badge][]](#System-Requirements) [![license_badge][]][license]
2020-06-07 02:05:49 +03:00
2020-06-22 21:49:36 +03:00
Tide is a [Fish][] theme that provides a powerful, flexible, and out-of-the-box experience.
2020-04-03 02:30:40 +03:00
2020-06-21 02:42:47 +03:00
![prompt_connection][]
2020-05-13 06:17:03 +03:00
2020-06-16 20:03:02 +03:00
## Installation
2020-04-03 02:30:40 +03:00
2020-06-05 07:00:48 +03:00
1. Install the [recommended font ](#Fonts ). _Optional but highly recommended_
2020-04-03 02:30:40 +03:00
2020-06-05 06:57:17 +03:00
2. Source and run the install function:
2020-06-30 21:07:52 +03:00
```console
2020-06-29 20:41:51 +03:00
curl -sL git.io/tide | source & & tide_install
2020-06-05 06:57:17 +03:00
```
2020-05-13 06:17:03 +03:00
2020-06-12 21:55:30 +03:00
### System Requirements
2020-06-19 05:18:36 +03:00
- [fish][] ≥3.1
- [git][]
2020-06-12 21:55:30 +03:00
2020-06-16 20:03:02 +03:00
## Features
2020-05-13 06:17:03 +03:00
2020-05-20 08:14:01 +03:00
### Configuration Wizard
2020-05-20 04:08:57 +03:00
Type `tide configure` to open the the wizard in your terminal.
2020-06-19 21:13:43 +03:00
![configuration_wizard][]
2020-05-20 04:08:57 +03:00
2020-06-10 19:18:15 +03:00
### Multi-Line Right Prompt
> Fish can't do _that_ yet can it?
2020-06-19 21:13:43 +03:00
![multi-line_right_prompt][]
2020-06-10 19:18:15 +03:00
2020-06-16 03:52:35 +03:00
### Pure Compatibility
2020-06-19 05:18:36 +03:00
Tide can produce the same prompt as [Pure][]. Type `tide configure` and select the Pure style.
2020-06-16 03:52:35 +03:00
2020-06-19 21:13:43 +03:00
![pure_compatibility][]
2020-06-16 03:52:35 +03:00
2020-06-17 18:57:08 +03:00
Tide doesn't recognize Pure configuration parameters, so you'll need to use `set tide_cmd_duration_threshold 3000` instead of `set pure_threshold_command_duration 3` , etc.
2020-06-16 03:52:35 +03:00
2020-06-17 18:57:08 +03:00
Pure style is an exact replication of the Pure fish theme and therefore displays less information than Lean. It exists only to ease the migration for users of that theme. Unless you are one of them, choose Lean style over Pure.
2020-06-16 22:28:24 +03:00
2020-05-20 08:14:01 +03:00
### Extensible
2020-05-20 04:08:57 +03:00
If there isn't a prompt item that fits your needs, make your own!
2020-06-19 21:13:43 +03:00
![extensible][]
2020-05-20 04:08:57 +03:00
2020-06-16 20:03:02 +03:00
## Contributing
2020-05-31 04:03:41 +03:00
2020-06-19 05:18:36 +03:00
If you're interested in helping contribute to Tide, please take a look at the [Contributing Guide][].
2020-05-31 04:03:41 +03:00
2020-06-16 20:03:02 +03:00
## Configuration
2020-05-20 04:08:57 +03:00
2020-05-20 22:41:03 +03:00
Tide variables that users are encouraged to modify begin with the string `tide_` . Thus, variables in this section will be denoted as `example_variable` but will actually be `tide_example_variable` .
2020-05-20 04:08:57 +03:00
2020-05-20 08:14:01 +03:00
## General Variables
2020-05-13 06:17:03 +03:00
2020-06-30 21:07:52 +03:00
| Variable | Description | Default |
| ------------------ | ------------------------------------------ | -------------------------------------------- |
| newline | add empty line before each prompt | true |
| left_prompt_items | order of the left prompt items to display | pwd git_prompt newline prompt_char |
| right_prompt_items | order of the right prompt items to display | status cmd_duration context jobs virtual_env |
2020-05-13 06:17:03 +03:00
2020-05-31 04:03:41 +03:00
### prompt_connection
2020-05-13 06:17:03 +03:00
| Variable | Description | Default |
| ----------------------- | --------------------------------------------------------------------- | ------- |
| prompt_connection_color | color of prompt connection | 6C6C6C |
| prompt_connection_icon | repeated symbol that spans gap between left and right sides of prompt | ' ' |
2020-05-20 08:14:01 +03:00
## Prompt Items
2020-05-20 08:22:32 +03:00
| Item | Description |
| ----------------------------- | -------------------------------- |
| [cmd_duration ](#cmd_duration ) | duration of the last run command |
| [context ](#context ) | user@hostname in ssh or root |
| [git_prompt ](#git_prompt ) | git repository status |
| [jobs ](#jobs ) | presence of background jobs |
| [prompt_char ](#prompt_char ) | prompt symbol;turns red on error |
| [pwd ](#pwd ) | current directory |
| [status ](#status ) | exit code of the last command |
| [time ](#time ) | current time |
2020-06-28 22:30:35 +03:00
| [virtual_env ](#virtual_env ) | python virtual environment |
2020-05-20 08:14:01 +03:00
### cmd_duration
| Variable | Description | Default |
| ---------------------- | ------------------------------------------------------------------ | ------- |
| cmd_duration_color | color of cmd_duration output | 87875F |
| cmd_duration_decimals | number of decimals to display after seconds place | 0 |
| cmd_duration_threshold | number of milliseconds that duration must exceed to produce output | 3000 |
2020-05-20 08:22:32 +03:00
### context
2020-05-20 08:33:13 +03:00
| Variable | Description | Default |
| ------------------ | ------------------------------- | ------- |
| context_root_color | color of context when root user | D7AF00 |
| context_ssh_color | color of context when in SSH | D7AF87 |
2020-05-20 08:22:32 +03:00
2020-05-20 08:14:01 +03:00
### git_prompt
2020-06-19 05:18:36 +03:00
Tide's git capabilities are inherited from fish's built-in [fish_git_prompt][]. Modify those variables to configure tide's git prompt.
2020-05-13 06:17:03 +03:00
2020-05-20 08:33:13 +03:00
### jobs
| Variable | Description | Default |
| ---------- | ------------------------------------------------ | ------- |
| jobs_color | color of jobs icon | D7AF00 |
2020-06-28 22:09:54 +03:00
| jobs_icon | symbol to display when there are background jobs | '' |
2020-05-20 08:33:13 +03:00
2020-05-20 19:16:02 +03:00
### prompt_char
| Variable | Description | Default |
| ------------------------- | ----------------------------------------------------- | ------- |
| prompt_char_icon | prompt char symbol | '❯ ' |
| prompt_char_success_color | color of prompt char when last command was successful | 5FD700 |
| prompt_char_failure_color | color of prompt char when last command failed | FF0000 |
2020-05-20 08:14:01 +03:00
### pwd
2020-06-28 22:09:54 +03:00
| Variable | Description | Default |
| ------------------------ | ----------------------------------------------------------------- | -------------------- |
| pwd_anchors | Directories displayed in bold and immune to truncation | 'first' 'last' 'git' |
| pwd_color_anchors | color of anchors | 00AFFF |
| pwd_truncate_margin | start truncating when pwd is this many columns from terminal edge | 10 |
| pwd_color_truncated_dirs | color of truncated directories | 8787AF |
| pwd_max_dirs | max number of directories to display, 0 or less equals unlimited | 0 |
| pwd_color_dirs | color of normal directories | 0087AF |
| pwd_unwritable_icon | symbol to display when the directory is not writable by the user | '' |
2020-05-13 06:17:03 +03:00
### status
| Variable | Description | Default |
| -------------------- | -------------------------------------------------------------- | ------- |
| status_success_icon | symbol to display when the last command in a pipeline succeeds | '✔' |
| status_success_color | color of successful pipeline's status | 5FAF00 |
| status_failure_icon | symbol to display when the last command in a pipeline fails | '✘' |
| status_failure_color | color of failed pipeline's status | D70000 |
2020-05-20 19:16:02 +03:00
### time
| Variable | Description | Default |
| ----------- | ---------------------- | ------- |
| time_color | color of time display | 5F8787 |
| time_format | format of time display | '%T' |
2020-06-05 05:43:27 +03:00
2020-06-28 22:09:54 +03:00
### virtual_env
| Variable | Description | Default |
| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| virtual_env_color | color of virtual_env item | 00AFAF |
| virtual_env_icon | icon to display in front of virtual_env item | '' |
| virtual_env_display | Options are venvName and projectName. venvName is the virtual env directory, most often .venv. projectName is the directory above that | projectName |
2020-06-16 20:03:02 +03:00
## Fonts
2020-06-05 05:43:27 +03:00
2020-06-05 06:57:17 +03:00
`Sauce Code Pro` —a nerd-fonts patched version of the legendary Source Code Pro—is the recommended font for Tide.
2020-06-16 20:03:02 +03:00
### Font Installation
2020-06-05 05:43:27 +03:00
Download these four ttf files:
2020-06-19 05:18:36 +03:00
- [Sauce Code Pro Regular.ttf][]
- [Sauce Code Pro Bold.ttf][]
- [Sauce Code Pro Italic.ttf][]
- [Sauce Code Pro Bold-Italic.ttf][]
2020-06-05 05:43:27 +03:00
2020-06-05 06:57:17 +03:00
Open each file and click "Install". This will make the `Sauce Code Pro` font available to all applications on your system. Configure your terminal to use this font.
2020-06-16 05:21:44 +03:00
2020-07-08 21:27:41 +03:00
## Acknowledgments
2020-06-22 21:49:36 +03:00
2020-07-08 21:27:41 +03:00
- [Powerlevel10k][] - Fast, flexible, and powerful Zsh theme. Much of Tide's documentation, ideas, and design elements are borrowed from Powerlevel10k.
2020-06-22 21:49:36 +03:00
2020-07-08 21:27:41 +03:00
<!-- Alphabetical Reference Links -->
2020-07-12 21:12:56 +03:00
[ci]: https://github.com/IlanCosman/tide/actions?query=workflow%3ACI
[ci_badge]: https://github.com/IlanCosman/tide/workflows/CI/badge.svg
2020-07-13 21:37:57 +03:00
[configuration_wizard]: ./resources/svgs/Configuration_Wizard.svg
2020-07-08 21:27:41 +03:00
[contributing guide]: https://github.com/IlanCosman/tide/blob/master/CONTRIBUTING.md
2020-07-13 21:37:57 +03:00
[extensible]: ./resources/images/Extensible.png
2020-07-06 20:15:49 +03:00
[fish]: https://github.com/fish-shell/fish-shell
2020-07-08 21:27:41 +03:00
[fish_git_prompt]: https://fishshell.com/docs/current/cmds/fish_git_prompt.html
[fish_version_badge]: https://img.shields.io/badge/fish-3.1.0%2B-blue
2020-07-06 20:15:49 +03:00
[git]: https://github.com/git/git
2020-07-13 21:37:57 +03:00
[license]: ./LICENSE.md
2020-07-08 21:27:41 +03:00
[license_badge]: https://img.shields.io/github/license/IlanCosman/tide
2020-07-13 21:37:57 +03:00
[multi-line_right_prompt]: ./resources/images/Multi-Line_Right_Prompt.png
2020-07-08 21:27:41 +03:00
[powerlevel10k]: https://github.com/romkatv/powerlevel10k/
2020-07-13 21:37:57 +03:00
[prompt_connection]: ./resources/images/Prompt_Connection.png
2020-07-06 20:15:49 +03:00
[pure]: https://github.com/rafaelrinaldi/pure
2020-07-13 21:37:57 +03:00
[pure_compatibility]: ./resources/svgs/Pure_Compatibility.svg
2020-07-08 21:27:41 +03:00
[releases]: https://github.com/IlanCosman/tide/releases
[release_badge]: https://img.shields.io/github/v/release/IlanCosman/tide?label=%20
2020-07-06 20:15:49 +03:00
[sauce code pro bold.ttf]: https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/SourceCodePro/Bold/complete/Sauce%20Code%20Pro%20Bold%20Nerd%20Font%20Complete.ttf
[sauce code pro bold-italic.ttf]: https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/SourceCodePro/Bold-Italic/complete/Sauce%20Code%20Pro%20Bold%20Italic%20Nerd%20Font%20Complete.ttf
2020-07-08 21:27:41 +03:00
[sauce code pro italic.ttf]: https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/SourceCodePro/Italic/complete/Sauce%20Code%20Pro%20Italic%20Nerd%20Font%20Complete.ttf
[sauce code pro regular.ttf]: https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/SourceCodePro/Regular/complete/Sauce%20Code%20Pro%20Nerd%20Font%20Complete.ttf