fix: llama.vim requires vim >= 901.

This commit is contained in:
Gea-Suan Lin
2025-01-27 01:27:29 +08:00
parent 43db0c2363
commit 84c6b724d8

View File

@@ -78,7 +78,7 @@ Plug 'tomtom/tlib_vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'wuelnerdotexe/vim-astro'
if v:version >= 800 || has('nvim-0.8.0')
if v:version >= 901 || has('nvim-0.8.0')
Plug 'ggml-org/llama.vim'
endif
call plug#end()