Skip to content

Commit

Permalink
Removed confusing variable from examples in README.md
Browse files Browse the repository at this point in the history
Removed confusing the variable `BAT_CONFIG_DIR` from examples because it
 is not a real configuration option for bat.
  • Loading branch information
lavifb authored and sharkdp committed Dec 2, 2018
1 parent 0571c51 commit d3d795f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions README.md
Expand Up @@ -262,10 +262,8 @@ and theme. To add new syntax definitions, do the following.
Create a folder with syntax definition files:

```bash
BAT_CONFIG_DIR="$(bat cache --config-dir)"

mkdir -p "$BAT_CONFIG_DIR/syntaxes"
cd "$BAT_CONFIG_DIR/syntaxes"
mkdir -p "$(bat cache --config-dir)/syntaxes"
cd "$(bat cache --config-dir)/syntaxes"

# Put new '.sublime-syntax' language definition files
# in this folder (or its subdirectories), for example:
Expand All @@ -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:
```bash
BAT_CONFIG_DIR="$(bat cache --config-dir)"

mkdir -p "$BAT_CONFIG_DIR/themes"
cd "$BAT_CONFIG_DIR/themes"
mkdir -p "$(bat cache --config-dir)/themes"
cd "$(bat cache --config-dir)/themes"

# Download a theme in '.tmTheme' format, for example:
git clone https://github.com/greggb/sublime-snazzy
Expand Down

0 comments on commit d3d795f

Please sign in to comment.