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:
:scriptnames
does not showslimv.vim
, so it's not being loaded at all:filetype
shows all options set to ON:set rtp?
shows~/.vim
as the first entry- vim was compiled with python, shows
+python
slimv.vim
and related files are all in~/.vim/ftplugin/
:echo $HOME
shows the correct home directoryslimv.vim
is offiletype=unix
- I've tried both with and without
let g:slimv_python = 'python2'
in.vimrc
, as suggested by the AUR comments for slimv :messages
shows 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=lisp
After that you could check
:messages
for any error messages.