i'm trying to make vim check for the filename of the file it's about to open
if @%== .\+"notes.tex"
highlight done ctermbg=blue ctermfg=white guibg=#292960 guifg=#AAAAAA
match done /.\+itemize.\+/
endif
i'd like this script work on the file notes.tex regardless of the directory. the reason i pu .+ before notes is because i want to match all the preceeding characterrs in the filename
in other words i want if to match "notes.tex" and "../notes.tex"