dotfiles/home/vimrc
David Todd 80b5ff8470 Update VIM Config
using a theme, also visual aids to know the type of spacing
2019-04-18 14:25:11 -05:00

13 lines
266 B
VimL

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()
filetype plugin indent on