You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Newest officially supported NuShell version: 0.107.x
Should work with NuShell version: >= 0.88.x
ℹ️ Please ensure to update nushell after packer supports the new version
Installation
Notice: It works on GNU/Linux and Windows, but macos and bsd are probably similar enough to work as well.
Install command:
nu -c (http get https://raw.githubusercontent.com/jan9103/packer.nu/master/install.nu)
You have to reopen nu afterwards.
Basic Usage
Selecting and Configuring packages
ℹ️ A full documentation of the usage can be found in the wiki (GitHub, CodeBerg).
~/.config/nushell/packages.nuon contains your package list and packer-configuration.
A example config:
{
packages: [
# the config should specify packer.nu itself in order to allow automatic updates.
{source: 'jan9103/packer.nu'} # -> https://github.com/jan9103/packer.nu
# any git-repository URI, which is not password protected should be supported
{source: 'https://codeberg.org/packer.nu/bookmarks.git'}
# you can also use local directories
# this symlinks the directory and wont update it with `packer update`.
{source: '~/code/my_packer_nu_plugin'}
]
}