Customize the COLORS of your files.??
Mani Bhaskar Edula
? An unconventional school for the next gen innovators | Generalists always beat specialists.
export LS_COLORS=$LS_COLORS;'di=01;33:ln=36'
In this command, `export` is used to set the `LS_COLORS` environment variable to include the new color setting for directories (`di=0;34`)
The `${LS_COLORS}` at the end ensures that the existing `LS_COLORS` value is preserved.
After executing this command, the directories will be displayed in blue when using the `ls` command.
Again, to make this change persistent, you can add the `export` command to your shell configuration file (e.g., `.bashrc` or `.bash_profile`) so that it is applied every time you start a new shell session.