minpac VS minPlug

Compare minpac vs minPlug and see what are their differences.

minpac

A minimal package manager for Vim 8 (and Neovim) (by k-takata)

minPlug

Minimalistic plugin "manager" for Vim8 (by Jorengarenar)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
minpac minPlug
10 2
829 20
- -
1.6 3.9
5 months ago 4 months ago
Vim Script Vim Script
- -
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.

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".

minPlug

Posts with mentions or reviews of minPlug. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-17.
  • unwanted fold opening
    2 projects | /r/vim | 17 Apr 2021
    Because there are rarely updates and it's just one file, I just incorporated it directly into my Vim config. And if there happen to be an update, then my plugin manager (minPlug) has option to download only single files:
  • Plug-in not working
    1 project | /r/vim | 28 Feb 2021
    Vundle is a bit obsolete (last code update 5 years ago); better use something else (e.g. minPlug or vim-plug)

What are some alternatives?

When comparing minpac and minPlug you can also consider the following projects:

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

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

vim-go - Go development plugin for Vim

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

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

nvim-neoclip.lua - Clipboard manager neovim plugin with telescope integration

vim-packager - Vim plugin manager that utilizes "jobs" and "pack" features.

vim-cool - A very simple plugin that makes hlsearch more useful.

ReplaceWithRegister - Replace text with the contents of a register.

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

fern.vim - 🌿 General purpose asynchronous tree viewer written in Pure Vim script