tani / vim-jetpack

The lightning-fast plugin manager, alternative to vim-plug

Home Page:https://gist.asciidoctor.org/?github-tani/vim-jetpack/main//README.adoc&source-highlighter=highlightjs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bug?: The `name` option does not working

leviosa42 opened this issue · comments

~/.vim/vimrc

" automatic installation on startup
let s:jetpackfile = expand('<sfile>:p:h') .. '/pack/jetpack/opt/vim-jetpack/plugin/jetpack.vim'
let s:jetpackurl = "https://raw.githubusercontent.com/tani/vim-jetpack/master/plugin/jetpack.vim"
if !filereadable(s:jetpackfile)
  call system(printf('curl -fsSLo %s --create-dirs %s', s:jetpackfile, s:jetpackurl))
endif

packadd vim-jetpack
call jetpack#begin()
call jetpack#add('tani/vim-jetpack', {'opt': 1}) "bootstrap
call jetpack#add('catppuccin/vim', {'name': 'catppuccin'})
call jetpack#end()

Dockerfile

FROM thinca/vim:latest

RUN apk add --no-cache git curl

RUN mkdir /root/.vim
COPY vimrc /root/.vim/vimrc

screenshot

image