Home

Awesome

pam.nvim

The package manager for Neovim

Features

Getting started

Clone pam.nvim:

git clone https://github.com/mvllow/pam.nvim \
  ~/.local/share/nvim/site/pack/pam/start/pam.nvim

Add packages to manage:

require("pam").manage({
    { source = "mvllow/pam.nvim" },
    {
        source = "nvim-treesitter/nvim-treesitter",
        post_checkout = function()
            vim.cmd("TSUpdate")
        end,
        config = function()
            require("nvim-treesitter.configs").setup()
        end
    },
    {
        source = "ThePrimeagen/harpoon",
        as = "baboon",
        branch = "harpoon2",
        dependencies = {
            { source = "nvim-lua/plenary.nvim" }
        }
    }
})

Install, upgrade, list, or clean packages via the builtin commands:

:Pam <command>

Please see doc/pam.txt or :help pam for more information.

Contributing

There are plenty of package managers out there, but none are named pam. Although that last part was irrelevant, we want to keep pam small. Pull requests are welcome and appreciated, however it may be best to create an issue to discuss any changes first.

Generating documentation

make docs