dotfiles/home/vimrc

14 lines
267 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
colorscheme torte
" 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