https://github.com/decors/fish-colored-man
Color-enabled man pages plugin for fish-shell
https://github.com/decors/fish-colored-man
fish-plugin
Last synced: over 1 year ago
JSON representation
Color-enabled man pages plugin for fish-shell
- Host: GitHub
- URL: https://github.com/decors/fish-colored-man
- Owner: decors
- License: mit
- Created: 2016-02-17T08:04:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T14:18:25.000Z (almost 5 years ago)
- Last Synced: 2023-03-11T03:33:39.546Z (over 3 years ago)
- Topics: fish-plugin
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 82
- Watchers: 2
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# colored man
Color-enabled man plugin for fish-shell.

This plugin to define the *man* function.
## Install
[Fisher](https://github.com/jorgebucaran/fisher)
```fish
fisher install decors/fish-colored-man
```
[Oh My Fish](https://github.com/oh-my-fish/oh-my-fish)
```fish
omf install https://github.com/decors/fish-colored-man
```
## Color options
If you want to change the colors, add the following options to your `config.fish`.

```fish
# Solarized Dark & Green highlight
set -g man_blink -o red
set -g man_bold -o green
set -g man_standout -b black 93a1a1
set -g man_underline -u 93a1a1
```
```fish
# Solarized Light & Magenta highlight
set -g man_blink -o red
set -g man_bold -o magenta
set -g man_standout -b white 586e75
set -g man_underline -u 586e75
```
See also `man set_color`.