-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntax highlighting doesn't work with Vundle #13
Comments
I'm not familiar with Vundle to confirm or deny if this is a problem. Do you have any other plugins installed by Vundle? Do they work? |
I have a working setup of |
I have this problem too. |
After typing |
Typing |
Not sure how Vundle comes in, but |
Same problem here, it's as if the ftdetect/kotlin.vim file is not being read. copying the contents of that file to ~/.vimrc makes things work as expected. Not sure why ftdetect/kotlin.vim is not being read - if you look at for instance rust.vim (another plugin but for rust that also sets the filetype) it does essentially the same thing, and that works. I doubt it's related to the installation method. |
add this to your .vimrc: it works for me. |
add |
I was having this issue as well. I double checked my Before: " ...
filetype plugin indent on " vundle required!
call vundle#end() " required After: " ...
call vundle#end() " required
filetype plugin indent on " vundle required! Kinda weird bc afaict nothing else was broken 🤷♂️ |
Referring to the help of |
I've installed the plugin using
Vundle
Plugin 'udalov/kotlin-vim'
Then I've made sure to run
PluginInstall
. Everything went fine and I've restarted the editor several times. But I get not syntax highlighting at all.The text was updated successfully, but these errors were encountered: