/** * **nvim** - Ambitious Vim-fork focused on extensibility and agility * * @domain `neovim.io` * @programs `nvim` * @version `0.11.5` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install neovim.io` * @homepage https://neovim.io/ * @dependencies `gnu.org/gettext^0` * @buildDependencies `cmake.org`, `gnu.org/libtool@^2` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.neovimio * console.log(pkg.name) // "nvim" * console.log(pkg.description) // "Ambitious Vim-fork focused on extensibility and..." * console.log(pkg.programs) // ["nvim"] * console.log(pkg.versions[0]) // "0.11.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/neovim-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const neovimioPackage: { /** * The display name of this package. */ name: 'nvim'; /** * The canonical domain name for this package. */ domain: 'neovim.io'; /** * Brief description of what this package does. */ description: 'Ambitious Vim-fork focused on extensibility and agility'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/neovim.io/package.yml'; homepageUrl: 'https://neovim.io/'; githubUrl: 'https://github.com/neovim/neovim'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install neovim.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +neovim.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install neovim.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nvim']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/gettext^0']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org', 'gnu.org/libtool@^2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.5', '0.11.4', '0.11.3', '0.11.2', '0.11.1', '0.11.0', '0.10.4', '0.10.3', '0.10.2', '0.10.1', '0.10.0', '0.9.5', '0.9.4', '0.9.2', '0.9.1', '0.9.0', '0.8.2', '0.8.1']; aliases: readonly [] }; export type NeovimioPackage = typeof neovimioPackage