No description
  • Vim Script 40.3%
  • Lua 31.7%
  • C 27.2%
  • CMake 0.4%
  • Zig 0.1%
  • Other 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann d95d39dcff
Releasing fastforward version 0.12.4-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-20 15:07:43 +02:00
.github Merging upstream version 0.12.3. 2026-07-20 15:06:20 +02:00
cmake Merging upstream version 0.12.3. 2026-07-20 15:06:20 +02:00
cmake.config Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
cmake.deps Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
cmake.packaging Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
contrib Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
debian Releasing fastforward version 0.12.4-1~ffwd13+u1. 2026-07-20 15:07:43 +02:00
deps Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
runtime Merging upstream version 0.12.4. 2026-07-20 15:07:33 +02:00
scripts Merging upstream version 0.12.4. 2026-07-20 15:07:33 +02:00
src Merging upstream version 0.12.4. 2026-07-20 15:07:33 +02:00
test Merging upstream version 0.12.4. 2026-07-20 15:07:33 +02:00
.clang-format Adding upstream version 0.11.4. 2026-01-20 20:55:12 +01:00
.clang-tidy Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.clangd Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.editorconfig Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.emmyrc.json Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.git-blame-ignore-revs Adding upstream version 0.11.4. 2026-01-20 20:55:12 +01:00
.gitattributes Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.gitignore Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.luacheckrc Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.luacov Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.luarc.json Merging upstream version 0.12.3. 2026-07-20 15:06:20 +02:00
.mailmap Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.stylua.toml Adding upstream version 0.11.4. 2026-01-20 20:55:12 +01:00
.stylua2.toml Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
.styluaignore Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
AGENTS.md Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
BSDmakefile Adding upstream version 0.11.4. 2026-01-20 20:55:12 +01:00
BUILD.md Merging upstream version 0.12.3. 2026-07-20 15:06:20 +02:00
build.zig Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
build.zig.zon Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
CMakeLists.txt Merging upstream version 0.12.4. 2026-07-20 15:07:33 +02:00
CMakePresets.json Adding upstream version 0.11.4. 2026-01-20 20:55:12 +01:00
CONTRIBUTING.md Merging upstream version 0.12.3. 2026-07-20 15:06:20 +02:00
INSTALL.md Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
LICENSE.txt Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
MAINTAIN.md Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
Makefile Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00
README.md Merging upstream version 0.12.2. 2026-07-20 15:03:33 +02:00

Neovim

Documentation | Chat

Coverity Scan analysis Packages Debian CI Downloads

Neovim is a project that seeks to aggressively refactor Vim in order to:

See the Introduction wiki page and Roadmap for more information.

Features

See :help nvim-features for the full list, and :help news for noteworthy changes in the latest version!

Install from package

Pre-built packages for Windows, macOS, and Linux are found on the Releases page.

Managed packages are in Homebrew, Debian, Ubuntu, Fedora, Arch Linux, Void Linux, Gentoo, and more!

Install from source

See BUILD.md and supported platforms for details.

The build is CMake-based, but a Makefile is provided as a convenience. After installing the dependencies, run the following command.

make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

To install to a non-default location:

make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_INSTALL_PREFIX=/full/path/
make install

CMake hints for inspecting the build:

  • cmake --build build --target help lists all build targets.
  • build/CMakeCache.txt (or cmake -LAH build/) contains the resolved values of all CMake variables.
  • build/compile_commands.json shows the full compiler invocations for each translation unit.

Transitioning from Vim

See :help nvim-from-vim for instructions.

Project layout

├─ cmake/           CMake utils
├─ cmake.config/    CMake defines
├─ cmake.deps/      subproject to fetch and build dependencies (optional)
├─ runtime/         plugins and docs
├─ src/nvim/        application source code (see src/nvim/README.md)
│  ├─ api/          API subsystem
│  ├─ eval/         Vimscript subsystem
│  ├─ event/        event-loop subsystem
│  ├─ generators/   code generation (pre-compilation)
│  ├─ lib/          generic data structures
│  ├─ lua/          Lua subsystem
│  ├─ msgpack_rpc/  RPC subsystem
│  ├─ os/           low-level platform code
│  └─ tui/          built-in UI
└─ test/            tests (see test/README.md)

License

Neovim contributions since b17d96 are licensed under the Apache 2.0 license, except for contributions copied from Vim (identified by the vim-patch token). See LICENSE.txt for details.