From 1d6a026769e31e1a8d64475eae5af09c6804264f Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sat, 27 Jan 2018 21:32:09 -0600 Subject: [PATCH] Removes monochrome check. --- .vimrc | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.vimrc b/.vimrc index 2886a36..e862bfa 100644 --- a/.vimrc +++ b/.vimrc @@ -6,14 +6,8 @@ filetype off call plug#begin('~/.vim/pluged') -if $MONO != "yes" - set t_Co=256 " Set to 256 color mode. - syntax on " Enable syntax highlighting. - set nonumber " Enable line numbering. -else - " makes the autocmd's work when in MONO mode. - filetype on -endif +set t_Co=256 " Set to 256 color mode. +syntax on " Enable syntax highlighting. set nowrap " Disable word wrap. set tabstop=4 " Set tab to 4 characters.