14 lines
269 B
VimL
Raw Normal View History

syntax on
" Convert tabs to spaces
2016-06-14 13:33:44 -05:00
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
2020-10-05 10:30:49 -05:00
colorscheme iceberg
" Show tabs as arrows, and trailing whitespace as pips
set list
set listchars=tab:\→\ ,trail
2019-05-01 12:58:53 -05:00
2016-06-14 13:33:44 -05:00
execute pathogen#infect()
filetype plugin indent on