vim-packager VS minpac

Compare vim-packager vs minpac and see what are their differences.

vim-packager

Vim plugin manager that utilizes "jobs" and "pack" features. (by kristijanhusak)

minpac

A minimal package manager for Vim 8 (and Neovim) (by k-takata)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
vim-packager minpac
3 10
242 829
- -
0.0 1.6
over 2 years ago 4 months ago
Vim Script Vim Script
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vim-packager

Posts with mentions or reviews of vim-packager. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-22.

minpac

Posts with mentions or reviews of minpac. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-21.
  • How can I get started with VIM or NEOVIM??!!
    1 project | /r/vim | 10 Jun 2023
    PS: As you get proficient with Vim, you'll probably want to extend it with plugins, so you should look into package managers when you'll be a decent Vimmer; I use minpac but there are plenty of others. But for now, focus on learning Vim; you don't want to install a plugin to do something that Vim can do out of the box.
  • The Vundle github repo seems to have disappeared
    7 projects | /r/vim | 21 Feb 2023
    It’s been such a long time since I’ve used it. Don’t know how it compares, but minpac is super simple and uses vim’s native package system (the latter can also be used on its own) https://github.com/k-takata/minpac
  • Is there any way to update all the plugins installed using the built-in package manager?
    1 project | /r/vim | 26 Jan 2023
    There are package managers that are built on top of Vim's package system, the one I use is minpac which has a list of other plugin managers using Vim's package system in its README.
  • Help with plug
    6 projects | /r/neovim | 29 Oct 2022
    Options: - packloadall command family and maybe git submodules - minpac which is a thin utility around the above - vim-plug - old but still popular for it does the job - packer.nvim is a popular choice for lua configs, never got to using it myself - paq-nvim is another often mentioned lua solution - dozens of other solutions
  • How to manage Vims dot files (version >8.2), if there are complete plugins inside .vim?
    9 projects | /r/vim | 1 Sep 2022
    I'm not sure about vim-plug, but I use minpac which does use vim's native plugin location. The selling point is that the installs and updates are managed via the plugin's commands. As part of my dotfiles, the install command is run.
  • Can't add packer as my plug manager.
    4 projects | /r/neovim | 9 Jul 2022
    I went back to using minpac. It uses vim's package feature, but doesn't have to compile anything. I like that I don't have to load it unless I download something.
  • what vimL plugins are you still using?
    26 projects | /r/neovim | 1 Jul 2022
    minpac: Plugin manager.
  • help me test my new plugin lsp-zero.nvim
    3 projects | /r/neovim | 20 Feb 2022
    vim.opt.runtimepath:remove(vim.fn.expand('~/.config/nvim')) vim.opt.packpath:remove(vim.fn.expand('~/.local/share/nvim/site')) vim.opt.runtimepath:append(vim.fn.expand('/tmp/nvim-config')) vim.opt.packpath:append(vim.fn.expand('/tmp/nvim-config')) -- Install minpac local install_path = '/tmp/nvim-config/pack/minpac/opt/minpac' local install_plugins = false if vim.fn.empty(vim.fn.glob(install_path)) > 0 then vim.cmd('!git clone https://github.com/k-takata/minpac ' .. install_path) install_plugins = true end function PackInit() vim.cmd('packadd minpac') vim.call('minpac#init', {dir = '/tmp/nvim-config'}) local Plug = vim.fn['minpac#add'] -- Plugin manager Plug('k-takata/minpac', {type = 'opt'}) -- Colorscheme Plug 'mjlbach/onedark.nvim' -- LSP Support Plug 'neovim/nvim-lspconfig' Plug 'williamboman/nvim-lsp-installer' -- Autocompletion Plug 'hrsh7th/nvim-cmp' Plug 'hrsh7th/cmp-buffer' Plug 'hrsh7th/cmp-path' Plug 'saadparwaiz1/cmp_luasnip' Plug 'hrsh7th/cmp-nvim-lsp' Plug 'hrsh7th/cmp-nvim-lua' -- Snippets Plug 'L3MON4D3/LuaSnip' Plug 'rafamadriz/friendly-snippets' -- lsp stuff Plug 'VonHeikemen/lsp-zero.nvim' end pcall(vim.cmd, 'colorscheme onedark') vim.cmd [[ command! PackUpdate lua PackInit(); vim.call('minpac#update') command! PackClean lua PackInit(); vim.call('minpac#clean') command! PackStatus lua PackInit(); vim.call('minpac#status') ]] if install_plugins then vim.cmd('PackUpdate') end local ok, lsp = pcall(require, 'lsp-zero') if ok then lsp.preset('recommended') lsp.setup() end
  • Favorite unfamous vim/neovim plugin?
    23 projects | /r/neovim | 5 Jan 2022
    k-takata/minpac, the plugin manager that stays out my way. It can live as an optional plugin, it's not loaded unless I update or install something.
  • Creating a lua interface for minpac
    1 project | dev.to | 12 Aug 2021
    I like minpac, it's a good plugin manager. It does what I want. Exactly what I want. Problem is it's written in vimscript, which is something I'm trying to avoid right now. I have no good reason to avoid vimscript... I just don't want to write any. By now I have read enough about lua and the neovim api to create a wrapper that would make minpac a little bit more "lua friendly".

What are some alternatives?

When comparing vim-packager and minpac you can also consider the following projects:

packer.nvim - A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config

dein.vim - :zap: Dark powered Vim/Neovim plugin manager

vim-plug - :hibiscus: Minimalist Vim Plugin Manager

lsp-zero.nvim - A starting point to setup some lsp related features in neovim.

paq-nvim - 🌚 Neovim package manager

vim-go - Go development plugin for Vim

plug.nvim - An extensible layer for plugin managers in pure lua

telescope-command-palette.nvim - Create key-bindings and watch them with telescope :telescope:

slowly.nvim - Neovim plugin manager where simplicity > speed

minPlug - Minimalistic plugin "manager" for Vim8

dotfiles

vim-mark - Highlight several words in different colors simultaneously.