corrected some colors for using bash in windows

This commit is contained in:
2018-04-06 13:42:40 +02:00
parent 09473fc897
commit 6507d68b1d
2 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,10 @@ fi
export COLORTERM=1 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 # prefered editor
export EDITOR=vi export EDITOR=vi

1
.vimrc
View File

@ -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 smartcase " When searching with Uppercase Letters be Case-Sensitive, otherwise don't be
set incsearch " Incremental search set incsearch " Incremental search
set hlsearch " Search highlight set hlsearch " Search highlight
hi Search ctermbg=LightGrey " change color for search hints
set noexpandtab set noexpandtab