summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQwerty-Space <Qwerty-Space@users.noreply.github.com>2020-01-03 21:44:23 +0000
committerPierre Peltier <8608160+Peltoche@users.noreply.github.com>2020-01-07 15:35:05 +0100
commit748a2722a2688b44d8d70d3f87899dccbf66f937 (patch)
tree2f1e9b2331b51dbdd9bdba6923ee7d87cd70da99
parentf1fed05413f1756ff784363f6c4476d922378e69 (diff)
Add nerd fonts, minor typo and positional changes
• Add nerd fonts to xresources • Move ls alias to "optional", as it is not required for lsd to function, so keeping it in "required" is misleading • you→your
-rw-r--r--README.md19
1 files changed, 13 insertions, 6 deletions
diff --git a/README.md b/README.md
index 55974cf..a844b23 100644
--- a/README.md
+++ b/README.md
@@ -115,17 +115,24 @@ The [release page](https://github.com/Peltoche/lsd/releases) includes precompile
### Required
-In order to use lsd instead of the default ls you need to add this to you shell
-configuration file (~/.bashrc, ~/.zshrc, etc.) :
+Enable nerd fonts for your terminal, URxvt for example:
+
+.Xresources
+```
+URxvt*font: xft:Hack Nerd Font:style=Regular:size=11
+```
+
+### Optional
+
+
+In order to use lsd when entering the `ls` command, you need to add this to your shell
+configuration file (~/.bashrc, ~/.zshrc, etc.):
```sh
alias ls='lsd'
```
-### Optional
-
-Some examples of useful aliases. You can add this to you shell configuration
-file (~/.bashrc, ~/.zshrc, etc.) just under the alias above :
+Some further examples of useful aliases:
```sh
alias l='ls -l'