vim-ctrlspace VS minpac

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

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-ctrlspace minpac
13 10
1,725 830
0.5% -
4.3 1.6
22 days 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.

vim-ctrlspace

Posts with mentions or reviews of vim-ctrlspace. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-01.
  • How do you navigate different projects?
    2 projects | /r/vim | 1 Jun 2023
    https://github.com/vim-ctrlspace/vim-ctrlspace is the main plugin I use to open files and jump between buffers. In terms of this plugin, a project is a "bookmark," and you can switch between them easily - each project is actually just a working directory. Then you can open files from the current project directory using fuzzy search. I use tabs to keep related buffers together. And one of strong points of ctrlspace is that it keeps buffer list separate per tab. In other words, each tab has its own list of buffers, so you can jump really quickly between them. Of course, you can search in all loaded buffers (like in :ls).
  • Neovim workflow
    10 projects | /r/neovim | 30 Apr 2023
  • How to avoid having six million buffers open
    4 projects | /r/vim | 16 Mar 2023
    I thought it would be nice to have something like :ls but only for buffers of a current tab. There's a plugin that does exactly that: https://github.com/vim-ctrlspace/vim-ctrlspace. It supports fuzzy search of buffers (as well as files in your project), but I mostly use j/k in the buffer selection list. You can do browsing in a separate tab to keep those uninteresting buffers separate from everything else. I just no longer use :ls since it still contains a list of all buffers ever opened, and vim-ctrlspace buffer switching is much better. Though I sometimes still use :b filename.
  • How do you handle multiple projects/workspaces with Neovim?
    8 projects | /r/neovim | 31 May 2022
    Maybe this could fill your requirements: https://github.com/vim-ctrlspace/vim-ctrlspace
  • Is there a way to restore your current session including all of the marks?
    1 project | /r/vim | 11 Jan 2022
  • Favorite unfamous vim/neovim plugin?
    23 projects | /r/neovim | 5 Jan 2022
    I personally love vim-ctrlspace. I found out about it a few months ago, and since then, it's really one of the few plugins that I can't live without.
  • How to have separate buffers for every tab and split?
    1 project | /r/neovim | 4 Dec 2021
  • How to handle multiple projects in a single instance
    3 projects | /r/vim | 17 Sep 2021
    I used spacemacs for a few years and this problem was solved pretty neatly by projectile which basically filters all the buffer not in the current project. However it wasn't perfect and switch back to vim/tmux, but if for those who like this kind of workflow and don't want to use tmux (because for example they prefer a GUI version of vim), the vim plugin (ctrspace)(https://github.com/vim-ctrlspace/vim-ctrlspace) gives a similar workflow. I tried using but it wasn't for me.
  • Best way to implement a project like system?
    3 projects | /r/vim | 5 Aug 2021
    Try vim-addon-local-vimrc to load a project specific vimrc or vim-ctrlspace to load session infos.
  • How to make different buffers in different tabs?
    1 project | /r/vim | 4 Feb 2021

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-ctrlspace and minpac you can also consider the following projects:

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

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

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

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

bufexplorer - BufExplorer Plugin for Vim

vim-go - Go development plugin for Vim

fzf-folds.vim - Vim plugin that lets you fuzzy search for folds in a file

nui.nvim - UI Component Library for Neovim.

minPlug - Minimalistic plugin "manager" for Vim8

vim-prosession - Handle vim sessions like a pro

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