I installed slimv.vim (first through yaourt on Archlinux and then through vimana) and via both methods, slimv.vim doesn't load when I open a lisp file. I've scoured google results for debugging help, and here's what I have checked so far:
:scriptnamesdoes not showslimv.vim, so it's not being loaded at all:filetypeshows all options set to ON:set rtp?shows~/.vimas the first entry- vim was compiled with python, shows
+python slimv.vimand related files are all in~/.vim/ftplugin/:echo $HOMEshows the correct home directoryslimv.vimis offiletype=unix- I've tried both with and without
let g:slimv_python = 'python2'in.vimrc, as suggested by the AUR comments for slimv :messagesshows nothing:set ft?shows that the file is recognized as lisp
I don't have any other plugins, so it's possible that this is a general vim issue and I can't tell. What should I try next?
It's difficult to say where your problem is exactly but first I would check that your filetype is recognized properly.
:set ft?should output something likefiletype=lispAfter that you could check
:messagesfor any error messages.