vim-caddyfile icon indicating copy to clipboard operation
vim-caddyfile copied to clipboard

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

Open symgryph opened this issue 7 months ago • 2 comments

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 avatar Nov 13 '23 03:11 symgryph

I also did bundleInstall

symgryph avatar Nov 13 '23 03:11 symgryph

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?

isobit avatar Nov 13 '23 16:11 isobit