Removes monochrome check.

This commit is contained in:
Ryan Cavicchioni 2018-01-27 21:32:09 -06:00
parent 7076ee9e1e
commit 1d6a026769

10
.vimrc
View File

@ -6,14 +6,8 @@ filetype off
call plug#begin('~/.vim/pluged') call plug#begin('~/.vim/pluged')
if $MONO != "yes" set t_Co=256 " Set to 256 color mode.
set t_Co=256 " Set to 256 color mode. syntax on " Enable syntax highlighting.
syntax on " Enable syntax highlighting.
set nonumber " Enable line numbering.
else
" makes the autocmd's work when in MONO mode.
filetype on
endif
set nowrap " Disable word wrap. set nowrap " Disable word wrap.
set tabstop=4 " Set tab to 4 characters. set tabstop=4 " Set tab to 4 characters.