File: //proc/self/root/etc/vim/vimrc
" vimrc: Managed by puppet - DO NOT EDIT
" Changes manually to this file can, and will, be lost
let skip_defaults_vim=1
set nocompatible
runtime! debian.vim
if has("syntax")
syntax on
set background=dark
endif
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
set backspace=2
set formatoptions-=r
set formatoptions-=c
set formatoptions-=o
highlight Normal ctermbg=NONE
let &guicursor = &guicursor . ",a:blinkon0"
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif