Name the local files `.LS_COLORS` not `.dircolors`

Fixes #122
This commit is contained in:
Ryan Delaney 2020-02-10 10:59:58 -08:00
parent 745b57d838
commit 916f300089
1 changed files with 4 additions and 4 deletions

View File

@ -42,14 +42,14 @@ Here's a screenshot _(font and minor color shades, of course, depend on terminal
To install and use this file, put something like this in your shell resource
file:
```shell
eval $( dircolors -b $HOME/.dircolors )
eval $( dircolors -b $HOME/.LS_COLORS )
```
A quick way to install would be the following set of commands (assuming bash):
```shell
wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.dircolors
echo 'eval $(dircolors -b $HOME/.dircolors)' >> $HOME/.bashrc
wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.LS_COLORS
echo 'eval $(dircolors -b $HOME/.LS_COLORS)' >> $HOME/.bashrc
. $HOME/.bashrc
```
@ -77,7 +77,7 @@ realtime, using these colors.
## fish shell
```fish
eval ( dircolors --c-shell $HOME/.dircolors)
eval ( dircolors --c-shell $HOME/.LS_COLORS)
```
Place it in `~/.config/fish/config.fish` or any `*.fish*` file inside `~/.config/fish/conf.d/` to be loaded.