dotfiles/home/shell/vimrc

14 lines
269 B
VimL
Raw Normal View History

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