runtime! debian.vim " See http://vimdoc.sourceforge.net/htmldoc/options.html set incsearch nocompatible showmatch ignorecase smartcase scrolloff=5 noai vb t_vb= noerrorbells wildmenu number t_Co=256 " http://vimdoc.sourceforge.net/htmldoc/syntax.html#syntax syntax on filetype on " Pretend .vcl is C au BufNewFile,BufRead /etc/varnish/* setf vcl au BufNewFile,BufRead /usr/local/etc/varnish/* setf vcl au BufNewFile,BufRead *.vcl* setf vcl au BufRead,BufNewFile /etc/nginx/* set ft=nginx au BufRead,BufNewFile nginx.conf* set ft=nginx " Reopen files where we left off if has("autocmd") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") \| exe "normal! g'\"" | endif endif " Remember for 100 files: 1000 lines per register, but not for files in /mnt or /media. Save to ~/.viminfo set viminfo='100,s1000,r/mnt,r/media,n~/.viminfo " Theme settings :let g:inkpot_black_background = 1 set bg=dark colorscheme inkpot