Add missing flags to INSTALL.md

This commit is contained in:
Christopher Thompson 2023-07-08 19:04:42 -05:00
parent 601696fd7f
commit a6aaf65856

View file

@ -239,13 +239,25 @@ Show remote tracking branch together with diverge/sync state
set -g @dracula-git-show-remote-status true set -g @dracula-git-show-remote-status true
``` ```
#### mercurial options #### hg options
Hide details of hg changes Hide details of hg changes
```bash ```bash
set -g @dracula-hg-disable-status true set -g @dracula-hg-disable-status true
``` ```
Set symbol to use for when branch is up to date with HEAD
```bash
#default is ✓.Avoid using non unicode characters that bash uses like $, * and !
set -g @dracula-hg-show-current-symbol ✓
```
Set symbol to use for when branch diverges from HEAD
```bash
#default is unicode !.Avoid bash special characters
set -g @dracula-hg-show-diff-symbol !
```
Set symbol or message to use when the current pane has no hg repo Set symbol or message to use when the current pane has no hg repo
```bash ```bash
#default is unicode no message #default is unicode no message
@ -255,7 +267,7 @@ set -g @dracula-hg-no-repo-message ""
Hide untracked files from being displayed as local changes Hide untracked files from being displayed as local changes
```bash ```bash
#default is false #default is false
set -g @dracula-hg-no-untracked-files true set -g @dracula-hg-no-untracked-files false
``` ```
#### weather options #### weather options
@ -292,3 +304,4 @@ Set the label when there is one client, or more than one client
set -g @dracula-clients-singular client set -g @dracula-clients-singular client
set -g @dracula-clients-plural clients set -g @dracula-clients-plural clients
``` ```