All Projects → maralla → Pack

maralla / Pack

Licence: mit
📦 The missing vim8 package manager.

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Pack

Macports Base
The MacPorts command-line client
Stars: ✭ 502 (+110.92%)
Mutual labels:  command-line, package-manager
Macports Ports
The MacPorts ports tree
Stars: ✭ 891 (+274.37%)
Mutual labels:  command-line, package-manager
Nve
Run any command on specific Node.js versions
Stars: ✭ 531 (+123.11%)
Mutual labels:  command-line, package-manager
Winget Cli
Windows Package Manager CLI (aka winget)
Stars: ✭ 15,849 (+6559.24%)
Mutual labels:  command-line, package-manager
Xonotic Map Manager
A command line package manager for Xonotic community maps
Stars: ✭ 5 (-97.9%)
Mutual labels:  command-line, package-manager
Sampctl
The Swiss Army Knife of SA:MP - vital tools for any server owner or library maintainer.
Stars: ✭ 149 (-37.39%)
Mutual labels:  command-line, package-manager
Setup Miniconda
Set up your GitHub Actions workflow with conda via miniconda
Stars: ✭ 222 (-6.72%)
Mutual labels:  package-manager
Poetry
Python dependency management and packaging made easy.
Stars: ✭ 17,543 (+7271.01%)
Mutual labels:  package-manager
Hcl
Command-line tool for manipulating Harvest timesheets
Stars: ✭ 219 (-7.98%)
Mutual labels:  command-line
Kmdr Cli
🧠 The CLI tool for learning commands from your terminal
Stars: ✭ 218 (-8.4%)
Mutual labels:  command-line
Punic
Clean room reimplementation of Carthage tool
Stars: ✭ 236 (-0.84%)
Mutual labels:  package-manager
Meow
🐈 CLI app helper
Stars: ✭ 2,839 (+1092.86%)
Mutual labels:  command-line
Inquirer.js
A collection of common interactive command line user interfaces.
Stars: ✭ 15,378 (+6361.34%)
Mutual labels:  command-line
Go Termd
Package termd provides terminal markdown rendering, with code block syntax highlighting support.
Stars: ✭ 223 (-6.3%)
Mutual labels:  command-line
Psc Package
A package manager for PureScript based on package sets
Stars: ✭ 227 (-4.62%)
Mutual labels:  package-manager
Klog
A plain-text file format and command line tool for time tracking
Stars: ✭ 222 (-6.72%)
Mutual labels:  command-line
Asset Packagist
Asset Packagist
Stars: ✭ 235 (-1.26%)
Mutual labels:  package-manager
Pdd
📅 Tiny date, time diff calculator with piggybacked timers
Stars: ✭ 218 (-8.4%)
Mutual labels:  command-line
Manssh
Manage your ssh alias configs easily.
Stars: ✭ 226 (-5.04%)
Mutual labels:  command-line
Tutorials
🗒 codebar's tutorials
Stars: ✭ 231 (-2.94%)
Mutual labels:  command-line

pack

Package manager for vim8.

demo

Install

Currently only macOS and Linux are supported and neovim is not supported.

Use homebrew

# Add the pack tap
$ brew tap maralla/pack

# Install pack using brew.
$ brew install pack

Without homebrew

To install the already compiled binary, go to the releases page and download the proper compressed binary package:

$ v=v0.1.0
$ os=x86_64-unknown-linux-gnu
$ wget https://github.com/maralla/pack/releases/download/$v/pack-$v-$os.tar.gz
$ tar -vxf pack-$v-$os.tar.gz

Usage

All tasks should be done through pack command. pack will create a file named packfile under $VIM_CONFIG_PATH/.pack/ and all plugins are tracked in the file. Plugin config files are stored under $VIM_CONFIG_PATH/.pack/. The config files will be concatenated and stored under $VIM_CONFIG_PATH/plugin/_pack.vim automatically. These files are all managed by pack. Never change the files manually.

By default, if $VIM_CONFIG_PATH is not set, pack will create and install all files under ~/.vim(default vim packagepath). If using custom location by setting $VIM_CONFIG_PATH variable, you need to add the following at the top of your .vimrc:

set packpath+=$VIM_CONFIG_PATH

pack command

# Show general usage
$ pack -h

Install plugins

$ pack help install

# install plugins
# pack install <github_user/github_repo>
$ pack install maralla/completor.vim
$ pack install maralla/completor.vim maralla/completor-neosnippet

# install all plugins
$ pack install

# install optional plugin
$ pack install altercation/vim-colors-solarized -o

# install to a specific category
$ pack install pangloss/vim-javascript -c lang

# install a plugin for types
$ pack install maralla/rope.vim --for python
$ pack install mattn/emmet-vim --for html,jinja,xml

# install a plugin loaded for a command
$ pack install gregsexton/gitv --on Gitv

# install a plugin and build after installed
$ pack install Shougo/vimproc.vim --build 'make'

Config a plugin

$ pack config maralla/completor.vim
# This command will open an editor, enter vim scripts as the config for the plugin
# For example:
#
#   let g:completor_css_omni_trigger = '([\w-]+|@[\w-]*|[\w-]+:\s*[\w-]*)$'

List installed plugins

$ pack list

Uninstall plugins

Simple uninstall a plugin will not remove plugin config file. To remove a plugin config file use pack uninstall <plugin> -a or pack config <plugin> -d.

$ pack uninstall maralla/completor.vim
$ pack uninstall maralla/completor.vim maralla/completor-neosnippet

Update plugins

$ pack update
$ pack update maralla/completor.vim
$ pack update maralla/completor.vim maralla/completor-neosnippet

Misc

Shell completions

For bash, move contrib/pack.bash to $XDG_CONFIG_HOME/bash_completion or /etc/bash_completion.d/.

For fish, move contrib/pack.fish to $HOME/.config/fish/completions/.

For zsh, move contrib/_pack to one of your $fpath directories.

License

Distributed under the terms of the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].