Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Ryan Delaney 2020-02-10 11:01:40 -08:00
commit 4068b5e697
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 To install and use this file, put something like this in your shell resource
file: file:
```shell ```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): A quick way to install would be the following set of commands (assuming bash):
```shell ```shell
wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.dircolors wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.LS_COLORS
echo 'eval $(dircolors -b $HOME/.dircolors)' >> $HOME/.bashrc echo 'eval $(dircolors -b $HOME/.LS_COLORS)' >> $HOME/.bashrc
. $HOME/.bashrc . $HOME/.bashrc
``` ```
@ -77,7 +77,7 @@ realtime, using these colors.
## fish shell ## fish shell
```fish ```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. Place it in `~/.config/fish/config.fish` or any `*.fish*` file inside `~/.config/fish/conf.d/` to be loaded.