I need to source some configuration lines after loading a plugin called [utl.vim][1]
.
The documentation says, I need to put these configurations into after-directory
:
[23] NOte that you cannot include this line in your .vimrc because it is
:source'd before utl_rc.vim (which defines g:utl_cfg_hdl_mt_generic).
So either include/change it at <url:config:#r=utl_cfg_hdl_mt_text_directory>
or include it in the after-directory, see <url:vimhelp:after-directory#5.>
I created a file called utl.vim
inside ~/.vim/after/
directory.
But this file is not sourced. I verified this using :scriptnames
.
How to assure that Vim sources this file after loading utl.vim
plugin?