runtime! debian.vim syntax on set et set sw=4 set smarttab set background=dark if has("autocmd") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") \| exe "normal g'\"" | endif endif if has("autocmd") filetype indent on endif set showcmd " Show (partial) command in status line. set showmatch " Show matching brackets. set smartcase " Do smart case matching set incsearch " Incremental search set autowrite " Automatically save before commands like :next and :make if filereadable("/etc/vim/vimrc.local") source /etc/vim/vimrc.local endif