From 1dcb9cbb9e9b8804c68014e65e3cce87ff954647 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 2 May 2020 13:43:23 +0300 Subject: [PATCH] shellrc: add dircolors Selenized fix --- rc/bashrc | 4 ++++ rc/zshrc | 3 +++ 2 files changed, 7 insertions(+) diff --git a/rc/bashrc b/rc/bashrc index 013c00ab..7cbf3ba6 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -147,6 +147,10 @@ if [[ $UNAME = Darwin ]]; then (last -10&) fi +# fix dircolors for Selenized https://github.com/jan-warchol/selenized/blob/master/other-apps/dircolors/README.md +export LS_COLORS="$LS_COLORS:ow=1;7;34:st=30;44:su=30;41" + + ##### Environment 7RS56S ##### # Environment should be placed to .environment or .bash_environment. diff --git a/rc/zshrc b/rc/zshrc index 6c2644fc..20d6d37a 100644 --- a/rc/zshrc +++ b/rc/zshrc @@ -102,6 +102,9 @@ if [[ $UNAME = Darwin ]]; then (last -10&) fi +# fix dircolors for Selenized https://github.com/jan-warchol/selenized/blob/master/other-apps/dircolors/README.md +export LS_COLORS="$LS_COLORS:ow=1;7;34:st=30;44:su=30;41" + ##### Environment 7RS56S ##### # Environment should be placed to .environment or .zsh_environment (or .zshenv).