Add the styles to the .atom/styles.less stylesheet in Atom.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| chpwd() { | |
| ls_abbrev | |
| } | |
| ls_abbrev() { | |
| # -a : Do not ignore entries starting with .. | |
| # -C : Force multi-column output. | |
| # -F : Append indicator (one of */=>@|) to entries. | |
| local cmd_ls='ls' | |
| local -a opt_ls | |
| opt_ls=('-aCF' '--color=always') |

