<div align="center"><p> <a href="https://github.com/neovim/neovim"><img src="https://img.shields.io/badge/Neovim-0.9.0-blueviolet.svg?style=flat-square&logo=Neovim&color=90E59A&logoColor=white" alt="Neovim"/></a> <a href="https://github.com/doctorfree/nvim-lazyman/pulse"><img src="https://img.shields.io/github/last-commit/doctorfree/nvim-lazyman" alt="Last commit"/></a> <a href="https://github.com/doctorfree/nvim-lazyman/pulse"><img src="https://img.shields.io/github/commit-activity/t/doctorfree/nvim-lazyman" alt="Github commit activity"/></a> <a href="https://github.com/doctorfree/nvim-lazyman/issues"><img src="https://img.shields.io/github/issues/doctorfree/nvim-lazyman.svg?style=flat-square&label=Issues&color=F05F40" alt="Github issues"/></a> <a href="https://github.com/doctorfree/nvim-lazyman/actions/workflows/docker.yml"><img src="https://github.com/doctorfree/nvim-lazyman/actions/workflows/docker.yml/badge.svg" alt="CI Status"/></a> <a href="https://github.com/doctorfree/nvim-lazyman/blob/main/LICENSE"><img src="https://img.shields.io/github/license/doctorfree/nvim-lazyman?style=flat-square&logo=MIT&label=License" alt="License"/></a> </p># Install lazyman with the following two commands: git clone https://github.com/doctorfree/nvim-lazyman $HOME/.config/nvim-Lazyman $HOME/.config/nvim-Lazyman/lazyman.sh
NEWS! Lazyman
is now available as a Kasm Workspace
by adding https://doctorfree.github.io/kasm-registry/
as a
Kasm 3rd party registry
and installing the Neovim
or Deluxe
workspace in your Kasm instance.
The Lazyman Neovim configuration management menu:
<p float="center"> <img src="https://raw.githubusercontent.com/wiki/doctorfree/nvim-lazyman/screenshots/lazymenu.png" style="width:877px;height:525px;"> </p>The nvims Neovim configuration fuzzy selector:
<p float="center"> <img src="https://raw.githubusercontent.com/wiki/doctorfree/nvim-lazyman/screenshots/nvims.png" style="width:250px;height:350px;"> <img src="https://raw.githubusercontent.com/wiki/doctorfree/nvim-lazyman/screenshots/nvims2.png" style="width:250px;height:240px;"> </p> </div>The Lazyman project can be used to install, initialize, and manage multiple Neovim configurations. Over 100 popular Neovim configurations are supported.
See what's new
Follow the Installation instructions to bootstrap Lazyman.
Once Lazyman is installed, execute the lazyman
command to manage
Neovim configurations. The lazyman
command is located in ~/.local/bin/lazyman
.
The two primary features of the Lazyman project are the lazyman
command
and the nvims
shell function. The lazyman
command provides a menu
interface and command line options to install, initialize, and manage
multiple Neovim configurations. The nvims
shell function dynamically
generates a fuzzy searchable menu of Neovim configurations from which
to select. The selected configurations can be opened in Neovim, removed,
or a configuration information document can be viewed.
More info on the nvims
and neovides
shell functions can be found below
in the nvims fuzzy selector section, in the
nvims
man page with man nvims
, with the command nvims -U
, or in Neovim
using the nvim-Lazyman
configuration with :h Nvims
.
The lazyman
command separates Neovim configurations into 5 categories:
Base
, Language
, Personal
, Starter
, and Custom
. The Base
category
consists of well tested Neovim configurations and distributions, all of which
provide significant value. The Language
category includes Neovim configurations
tailored for a specific programming or document format language. The Personal
category includes personal Neovim configurations that provide significant value
or demonstrate some cool features. Configurations in the Personal
category are
not necessarily intended for public use, these repositories are maintained for
the personal use of the authors but are included here for their value.
The Starter
category includes Neovim configurations tailored to serve as
a starting point for developing your own Neovim configuration. These include
the popular Neovim Kickstart
configuration, a Modern
Neovim config, the
PDE
personal development environment config, and the Neovim configurations
provided by the nvim-starter project.
The Custom
category includes any additional Neovim configurations installed
and initialized with lazyman
by the end-user using the -C url
and
-N nvimdir
options.
In addition, Lazyman installs and initializes the Lazyman Neovim configuration, a richly configured Neovim environment using Lua, Lazy, and Mason to support highlighting, completion, diagnostics, and more for many programming languages.
The installation and initialization of Neovim configurations are placed in
separate directories and managed using the NVIM_APPNAME
environment variable.
Note that a full installation and initialization of all supported Neovim configurations, plugins, language servers, formatters, linters, and tools will consume over 20GB of disk space.
The lazyman
command is installed as ~/.local/bin/lazyman
and can be used
to install, initialize, remove, and manage multiple Neovim configurations.
The lazyman
Neovim configuration manager requires Neovim 0.9. The lazyman
installation and initialization process checks for Neovim 0.9 and, if not
found, installs it and required dependencies and tools.
Lazyman requires Linux or macOS, git, and the Bash shell version 4 or later.
Note: CentOS 7
users should upgrade git
and macOS users upgrade bash
.
To enable installation of language servers and treesitter syntax highlighting
gcc
, node
, and npm
are required. For example, to install these
requirements on Ubuntu Linux:
sudo apt install build-essential sudo apt install nodejs sudo apt install npm
If you are in a corporate network or large shared network you may encounter rate limiting issues when attempting to access the Github API. To increase your rate limit, create and export a Github personal access token:
export GITHUB_TOKEN=<your-github-token>
Even the latest versions of macOS ship with Bash 3.2 which dates from 2007. The Lazyman initialization process will update your system with a modern Bash using Homebrew:
brew install bash
The initialization process also makes sure it is found first in your PATH.
For example, export PATH="/usr/local/bin:${PATH}"
or export PATH="/opt/homebrew/bin:${PATH}"
.
The Lazyman installation process consists of two steps.
Step 1, clone the Lazyman repository:
git clone https://github.com/doctorfree/nvim-lazyman $HOME/.config/nvim-Lazyman
Step 2, initialize the Lazyman Neovim configuration:
$HOME/.config/nvim-Lazyman/lazyman.sh
These 2 steps perform the following:
After the download and initialization are complete, execute the lazyman
command found in ~/.local/bin/lazyman
.
By default, Lazyman uses the native package manager to install Neovim dependencies and tools. Supported native package managers include:
apt
or apt-get
on Debian based platforms (e.g. Ubuntu)dnf
or yum
on RPM based platforms (Fedora, CentOS, Red Hat)pacman
on Arch Linux and Arch-Like platformsapk
on Alpine Linuxxbps-install
on Void Linuxzypper
on SUSE LinuxFurther details on Lazyman installation including command line options
to direct lazyman
to install Neovim, dependencies and tools using
Homebrew or to skip the Neovim installation altogether
can be found on the
Install tab of the Lazyman website
View details of each supported configuration at the Lazyman website.
Over 100 popular Neovim configurations are supported in the following configuration categories:
<!-- prettier-ignore -->Base | Configs | |
---|---|---|
Abstract | AstroNvimPlus | Basic IDE |
Ecovim | LazyVim | LunarVim |
MagicVim | NvChad | SpaceVim |
Language | Configs | |||||
---|---|---|---|---|---|---|
AlanVim | Allaman | CatNvim | Cpp | Go | Go2one | Insis |
Knvim | LaTeX | LazyIde | LunarIde | LvimIde | Magidc | Nv |
NV-IDE | Orange | Python | Rust | SaleVim | Shuvro | Webdev |
Starter | Configs | |||
---|---|---|---|---|
AstroNvimStart | Barebones | Basic | CodeArt | CosmicNvim |
Ember | Fennel | HardHacker |
AI数字人视频创作平台
Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。
一站式AI创作平台
提供 AI 驱动的图片、视频生成及数字人等功能,助力创 意创作
AI办公助手,复杂任务高效处理
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!
AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI小说写作助手,一站式润色、改写、扩写
蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号