Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove quotes from installation instructions #19

Merged
merged 5 commits into from Nov 29, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@

<!--lint disable no-duplicate-headings-->

# 0.2.1

_2020-11-10_

- Removed quotes from "~/.dir_colors" in **README.md** to fix symlink creation issue
- Change heading levels in **README.md** to conform to Markdown standards (no skipped levels)

This conversation was marked as resolved.
Show resolved Hide resolved
# 0.2.0

![Release Date: 2019-06-22](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2016-06-22&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.2.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-dircolors/projects/4) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.2.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-dircolors/milestone/3)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,32 @@

<p align="center"><a href="https://www.nordtheme.com/ports/dircolors" target="_blank"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-docs/develop/assets/images/ports/dircolors/overview.png"/></a></p>

## Getting started
# Getting started

Visit the [official website][nord-home] to learn all about the [features][nord-home#intro], how to [install and activate][nord-docs-home-install] the theme, supported [data and node types][nord-docs-home-types] and more from the [official documentations][nord-docs-home].

### Quick Start
## Quick Start

Nord dircolors can be installed for all application that respect the `LS_COLORS` environment variable like GNU core utils [`ls`][wiki-ls], [`tree`][wiki-tree] or modern projects like [`fd`][gh-sharkdp/fd].

Download the [`dir_colors`][gh-tree-dir_colors] file and place it as `~/.dir_colors` in your [home directory][wiki-home_dir].

For more details see the [official installation & activation guide][nord-docs-home-install] as well as the [GNU `dircolors` documentations][gnu-docs-dircolors].

#### Latest Development State
### Latest Development State

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
### Activation
This conversation was marked as resolved.
Show resolved Hide resolved

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)
```

<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-docs/develop/assets/images/ports/dircolors/installation-shell-rc.png"/></p>
Expand Down