From 80b5ff847033da385b27bcb09619f6fd7a918de3 Mon Sep 17 00:00:00 2001 From: David Todd Date: Thu, 18 Apr 2019 14:25:11 -0500 Subject: [PATCH] Update VIM Config using a theme, also visual aids to know the type of spacing --- home/vimrc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home/vimrc b/home/vimrc index 5148753..904c6d4 100644 --- a/home/vimrc +++ b/home/vimrc @@ -1,5 +1,12 @@ +syntax on +" Convert tabs to spaces set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab +colorscheme torte + +" Show tabs as arrows, and trailing whitespace as pips +set list +set listchars=tab:\→\ ,trail:· + execute pathogen#infect() -syntax on filetype plugin indent on