Skip to content

@antfu/ni alternative written in fish shell using abbr feature

License

Notifications You must be signed in to change notification settings

ryoppippi/na.fish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

na.fish

@antfu/ni alternative written in fish shell using abbr feature!

screen

Features

  • Automatically detects the package manager (npm, yarn, pnpm, bun, deno) in the current directory.

Requirements

  • fish shell
  • fzf (or your favorite fuzzy finder such as peco, skim, etc.)

Install

  1. Install with fisher
fisher install ryoppippi/na.fish
  1. Configure your favorite abbrv ex:
abbr -a n -f _na

Customization

You can customize the following options in your config.fish file:

# Set the fuzzy finder command to use (default: fzf)
set -g NA_FUZZYFINDER sk

# Set the fuzzy finder options
set -g NA_FUZZYFINDER_OPTIONS

# Set your favorite package manager list. You can customize the order. (default: npm pnpm bun yarn deno)
set -g NA_PACKAGE_MANAGER_LIST bun deno pnpm yarn npm

Recipies

Select package manager quickly with fzf

Set options like this:

set -g NA_FUZZYFINDER fzf
set -g NA_FUZZYFINDER_OPTIONS --bind 'one:accept' --query '^'

These options are:

  • --bind 'one:accept' : Automatically select the first item if there is only one item in the list.
  • --query '^' : Make query be matched from the beginning of the line, not fuzzy search.

screen2

Usage

Just type n (or your favorite abbr key) and hit space key, then the appropriate node/deno package manager command will be expanded.

Inspired by

License

MIT

About

@antfu/ni alternative written in fish shell using abbr feature

Topics

Resources

License

Stars

Watchers

Forks

Languages