isobit / vim-caddyfile

Caddyfile syntax support for Vim
MIT License
46 stars 7 forks source link

I have installed using vundle, but I still don't see caddyfiles syntax #5

Open symgryph opened 11 months ago

symgryph commented 11 months ago

I added both in .vimrc, and relevant .vimrc changes:

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Bundle 'isobit/vim-caddyfile'

But still don't get any syntax when I do "vim Caddyfile"

symgryph commented 11 months ago

I also did bundleInstall

isobit commented 11 months ago

That config doesn't look quite right to me, looking at the vundle docs; I think you want Plugin 'isobit/vim-caddyfile' instead of Bundle 'isobit/vim-caddyfile'. Also, are you calling vundle#end() after your plugin configs?

rpsirois commented 1 week ago

I tried both ways and no dice with various restarts and whatnot as well.