Neovim Pack

Pack Nvim :help pages, generated from source using the tree-sitter-vimdoc parser. Extending Nvim Using Vim packages A Vim “package” is a directory that contains plugins. Compared to normal plugins, a package can… be downloaded as an archive and unpacked in its own directory, so the files are not mixed with files of other plugins. be a git, mercurial, etc. repository, thus easy to update. contain multiple plugins that depend on each other. contain plugins that are automatically loaded on startup (“start” packages, located in “pack/*/start/*”) and ones that are only loaded when needed with :packadd (“opt” packages, located in “pack/*/opt/*”). runtime-search-path Nvim searches for :runtime files in: 1. all paths in ‘runtimepath’ 2. all “pack/*/start/*” dirs Note…

Read more on Hacker News