From 35166d328992213194d7d02cd034e39da962f19e Mon Sep 17 00:00:00 2001 From: Michael Cusick Date: Sun, 29 Nov 2020 02:25:47 -0600 Subject: [PATCH] Remove quotes from installation instructions (#19) Removed the quotes from around `~/.dir_colors` in the installation instructions. Before the shell specific tilde character was not resolved via variable expansion but used as literal character instead. Co-authored-by: Arctic Ice Studio Co-authored-by: Sven Greb Fixes GH-15 Fixes GH-18 Related to GH-11 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 597e717..5087d49 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ For more details see the [official installation & activation guide][nord-docs-ho To always use the latest development state of Nord dircolors, [clone the repository][repo] and create a [symbolic link][wiki-symlink] of the `src/dir_colors` file to `~/.dir_colors` in your [home directory][wiki-home_dir] afterwards: ```sh -ln -sr "$PWD/src/dir_colors" "~/.dir_colors" +ln -sr "$PWD/src/dir_colors" ~/.dir_colors ``` #### Activation @@ -35,7 +35,7 @@ ln -sr "$PWD/src/dir_colors" "~/.dir_colors" To activate and use Nord dircolors as your default color theme for all sessions, load the theme with `dircolors` by adding the following snippet to the configuration file of your shell (`~/.bashrc`, `~/.zshrc`, …): ```sh -test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors) +test -r ~/.dir_colors && eval $(dircolors ~/.dir_colors) ```