No description
Find a file
2017-07-12 22:15:12 +05:30
exe Updates to gem v0.1.3 2017-07-07 20:19:46 +05:30
lib Adds working -t / --tree flag 2017-07-12 22:00:59 +05:30
readme Updates README with new flag screenshots 2017-07-05 13:06:40 +05:30
spec Adds -A flag, edits -a flag (#75) 2017-07-11 16:08:29 +05:30
.gitignore Gitignores gem files 2017-07-05 22:45:17 +05:30
.rubocop.yml made rubocop happy by simplifying init_contents and increasing class 2017-07-10 15:04:45 +02:00
.travis.yml Updates travis.yml 2017-07-12 22:15:12 +05:30
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-07-07 23:01:53 +05:30
colorls.gemspec updated gemfile & travis, made rubocop happy 2017-07-10 13:39:52 +02:00
CONTRIBUTING.md Updated markdown and travis files 2017-07-07 20:25:38 +05:30
Gemfile Adds ruby gem skeleton 2017-07-05 19:53:11 +05:30
LICENSE.md Adds some more markdown files 2017-07-06 22:05:43 +05:30
Rakefile Adds ruby gem skeleton 2017-07-05 19:53:11 +05:30
README.md Adds minor changes to README 2017-07-10 20:36:24 +05:30

Color LS

forthebadge forthebadge

Gem Version Build Status PRs Welcome Awesome

A Ruby script that colorizes the ls output with color and icons. Here are the screenshots of working example on an iTerm2 terminal (Mac OS), oh-my-zsh with powerlevel9k theme and powerline nerd-font + awesome-config font with the Solarized Dark color theme.

Example #1

If you're interested in knowing the powerlevel9k configuration to get this prompt, have a look at this gist.

Table of contents

Usage

(Back to top)

  • Just lc : Prints all directories, files and dotfiles in current directory.

    Usage #1

  • With paths : lc path(s) prints all directories, files and dotfiles in given directory / directories.

    Usage #2

  • With --report or -r flag : lc path(s) -r : Prints all directories, files and dotfiles in directories, along with a brief report about number of files and folders shown.

    Usage #3 Usage #4

  • With --sort-dirs / -sd or --sort-files / -sf : Entries are sorted directories-first or files-first, and then alphabetically (case-insensitively) before being printed.

    Usage #5 Usage #6

  • With --dirs / -d or --files / -f : Entries are filtered so that only directories or files are shown.

    Usage #7 Usage #8

  • With -1 : Entries are printed in a column (one per line), just like ls -1 does.

    Usage #9

Installation

(Back to top)

  1. Install Ruby (prefably, version > 2.1)

  2. Install the patched fonts of powerline nerd-font and/or font-awesome. Have a look at nerdfont's README for more installation instructions.

    Note for iTerm2 users - Please enable the nerd-font at iTerm2 > Preferences > Profiles > Text > Non-Ascii font > Knack Regular Nerd Font Complete.

  3. Install the colorls ruby gem with gem install colorls

    Note for rbenv users - In case of load error when using lc, please try the below patch.

    rbenv rehash
    rehash
    
  4. Start using colorls 🎉

  5. Have a look at Recommended configurations.

Recommended configurations

(Back to top)

  1. To add some short command (say, lc) with some flag options (say, -r)b y default, add this to your shell configuration file (~/.bashrc, ~/.zshrc or ~/.fishrc) :

    alias lc='colorls -r'
    
  2. For changing the icon(s) to other unicode icons of choice (select icons from here), change the YAML files in a text editor of your choice (say, subl)

    subl $(gem which colorls)/../yaml/
    

Updating

(Back to top)

Want to update to the latest version of colorls?

gem update colorls

Uninstallation

(Back to top)

Want to uninstall and revert back to the old style? No issues (sob). Please feel free to open an issue regarding how we can enhance colorls.

gem uninstall colorls

Contributing

(Back to top)

Your contributions are always welcome! Please have a look at the contribution guidelines first. 🎉

License

(Back to top)

The MIT License (MIT) 2017 - Athitya Kumar. Please have a look at the LICENSE.md for more details.