I have multiple highlight groups and matchadd functions defined in my vimrc and they work well on individual files. Any ideas on how to make it force apply them all when i open 5 files like
$ gvim -p f1 f2 f3 f5
Anyway i can auto source my vimrc for each of these?
EDIT: heres my vimrc
set ic
colorscheme desert
set nu
set ai
set wrap
set hlsearch
syntax on
set shiftwidth=2
set smartindent
set noscrollbind
set guifont=Monospace\ 8
nmap <F5> :windo set scrollbind!<cr>
highlight Warn guibg=yellow guifg=black
call matchadd("Warn","^Warn.*")
call matchadd("Warn","**WARN.*")
highlight Err guibg=red guifg=black
call matchadd("Err","^Error.*")
call matchadd("Err","**ERROR.*")
highlight sourcing guibg=green guifg=black
call matchadd("sourcing","Begin verbose source.*")
call matchadd("sourcing","End verbose source.*")
highlight read_these guibg=grey guifg=black
call matchadd("read_these","^===.*")
call matchadd("read_these","\v^*{3}")
highlight time_stamp guibg=black guifg=green
call matchadd("time_stamp","Date:.*")
call matchadd("time_stamp","date=.*")
highlight timing_report guifg=green
call matchadd("timing_report",".*CK->Q.*")
highlight summary_after guibg=orange guifg=black
call matchadd("summary_after",".*ummary after .*")