mirror of
https://github.com/sharkdp/bat
synced 2024-11-15 08:37:12 +00:00
Removed confusing variable from examples in README.md
Removed confusing the variable `BAT_CONFIG_DIR` from examples because it is not a real configuration option for bat.
This commit is contained in:
parent
0571c51487
commit
d3d795ffb2
1 changed files with 4 additions and 8 deletions
12
README.md
12
README.md
|
@ -262,10 +262,8 @@ and theme. To add new syntax definitions, do the following.
|
||||||
Create a folder with syntax definition files:
|
Create a folder with syntax definition files:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
BAT_CONFIG_DIR="$(bat cache --config-dir)"
|
mkdir -p "$(bat cache --config-dir)/syntaxes"
|
||||||
|
cd "$(bat cache --config-dir)/syntaxes"
|
||||||
mkdir -p "$BAT_CONFIG_DIR/syntaxes"
|
|
||||||
cd "$BAT_CONFIG_DIR/syntaxes"
|
|
||||||
|
|
||||||
# Put new '.sublime-syntax' language definition files
|
# Put new '.sublime-syntax' language definition files
|
||||||
# in this folder (or its subdirectories), for example:
|
# in this folder (or its subdirectories), for example:
|
||||||
|
@ -292,10 +290,8 @@ This works very similar to how we add new syntax definitions.
|
||||||
|
|
||||||
First, create a folder with the new syntax highlighting themes:
|
First, create a folder with the new syntax highlighting themes:
|
||||||
```bash
|
```bash
|
||||||
BAT_CONFIG_DIR="$(bat cache --config-dir)"
|
mkdir -p "$(bat cache --config-dir)/themes"
|
||||||
|
cd "$(bat cache --config-dir)/themes"
|
||||||
mkdir -p "$BAT_CONFIG_DIR/themes"
|
|
||||||
cd "$BAT_CONFIG_DIR/themes"
|
|
||||||
|
|
||||||
# Download a theme in '.tmTheme' format, for example:
|
# Download a theme in '.tmTheme' format, for example:
|
||||||
git clone https://github.com/greggb/sublime-snazzy
|
git clone https://github.com/greggb/sublime-snazzy
|
||||||
|
|
Loading…
Reference in a new issue