From 6507d68b1d7b86eb786d8d9f40a7568501fea7cc Mon Sep 17 00:00:00 2001 From: Date: Fri, 6 Apr 2018 13:42:40 +0200 Subject: [PATCH] corrected some colors for using bash in windows --- .bashrc | 4 ++++ .vimrc | 1 + 2 files changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index 9e169f0..1fb96df 100644 --- a/.bashrc +++ b/.bashrc @@ -25,6 +25,10 @@ fi export COLORTERM=1 +# change darkblue dir-colors to lightgrey because it's unreadable with black background +LS_COLORS="di=01;90" +export LS_COLORS + # prefered editor export EDITOR=vi diff --git a/.vimrc b/.vimrc index 4f13bf7..259bb5c 100644 --- a/.vimrc +++ b/.vimrc @@ -24,6 +24,7 @@ set ignorecase " Do case insensitive matching set smartcase " When searching with Uppercase Letters be Case-Sensitive, otherwise don't be set incsearch " Incremental search set hlsearch " Search highlight +hi Search ctermbg=LightGrey " change color for search hints set noexpandtab