dotfiles/home/shell/vimrc
2020-10-05 10:30:49 -05:00

14 lines
269 B
VimL

syntax on
" Convert tabs to spaces
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
colorscheme iceberg
" Show tabs as arrows, and trailing whitespace as pips
set list
set listchars=tab:\→\ ,trail
execute pathogen#infect()
filetype plugin indent on