From 942bf6393adcf1780c6f6c715b3bc3bf49246d4a Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 6 Jul 2017 14:50:28 -0400 Subject: [PATCH] Adds note for Rbenv users in README (#32) * added note for rbenv users to remind them to rehash * removed extra spaces inserted by typora * added all four lines for easy copy paste * changed 'uninstall' to 'uninstallation' --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 53431cc..2ee6407 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,20 @@ A Ruby script that colorizes the `ls` output with color and icons. Here are the [(Back to top)](#table-of-contents) 1. Install Ruby (prefably, version > 2.1) + 2. Install the patched fonts of powerline nerd-font and/or font-awesome. + 3. Install the [colorls](https://rubygems.org/gems/colorls/) ruby gem with `gem install colorls` + + _Note: rbenv users may have see load errors. Rehashing rbenv and the shell by running the following may help: _ + + ```shell + gem uninstall colorls + gem install colorls + rbenv rehash + rehash + ``` + 4. Start using `lc` :tada: # Optional configurations @@ -74,7 +86,7 @@ subl $(gem which colorls)/../yaml/ _NOTE: If you're using iTerm2 on Mac, you may have to enable the nerd-font at iTerm2 > Preferences > Profiles > Text > Non-Ascii font > Knack Regular Nerd Font Complete_ -# Uninstall +# Uninstallation [(Back to top)](#table-of-contents)