1
0
Fork 0
mirror of https://github.com/neovim/neovim.git synced 2025-12-05 20:45:10 +00:00
Vim-fork focused on extensibility and usability https://neovim.io
Find a file
2025-12-05 15:51:46 +00:00
.github ci(lintdocurls): use sed -e flag to mark argument as command #36776 2025-12-01 16:54:10 -05:00
cmake build: redundant variable in cmake/Deps.cmake #35924 2025-09-30 20:16:02 -07:00
cmake.config build: haiku os support #36639 2025-11-23 09:45:00 -08:00
cmake.deps build(deps): bump luajit to 6f21cb8ac 2025-12-02 14:25:41 +01:00
cmake.packaging ci: Windows arm64 packages #35345 2025-08-31 22:35:48 -07:00
contrib build(contrib): add bash completion for nvim #35843 2025-09-19 14:59:58 -07:00
deps build(deps): bump utf8proc to v2.11.2 2025-11-24 11:07:28 +01:00
runtime refactor(lsp): fix lint 2025-12-05 15:51:46 +00:00
scripts feat(version): support multiple Vim versions 2025-12-01 02:34:51 -05:00
src fix(ui): close outdated cmdline pum on redraw (#36815) 2025-12-05 00:23:22 +00:00
test refactor(lsp): fix lint 2025-12-05 15:51:46 +00:00
.cirrus.yml ci(cirrus): update to FreeBSD 14.3 (#36813) 2025-12-03 00:55:05 +00:00
.clang-format build: align .clang-format rules with uncrustify config 2023-05-28 15:39:43 +02:00
.clang-tidy build: slience new clang-tidy warnings #34539 2025-06-17 02:19:57 -07:00
.clangd build: disable UnusedIncludes from clangd 2023-11-28 20:22:59 +01:00
.editorconfig docs: misc 2025-03-17 12:31:53 +01:00
.emmyrc.json build(emmyrc.json): use StyLua formatter in .emmyrc.json #35196 2025-08-06 19:52:46 -07:00
.git-blame-ignore-revs docs: .git-blame-ignore-revs #26397 2024-01-28 15:03:10 -08:00
.gitattributes fix: remove exec permission from .gitattributes #33140 2025-03-29 05:30:30 -07:00
.gitignore fix(build): musl libc build.zig 2025-05-04 22:55:19 +02:00
.luacheckrc docs(luv): replace bundled LuaCATS meta files with upstream 2025-05-06 18:47:33 +02:00
.luacov Lua: vim.validate() 2019-11-10 22:50:24 -08:00
.luarc.json docs(luv): replace bundled LuaCATS meta files with upstream 2025-05-06 18:47:33 +02:00
.mailmap docs: misc (#28837) 2024-06-07 10:55:14 +08:00
.stylua.toml build: enable lintlua for scripts/ dir #26391 2023-12-04 12:38:31 -08:00
.stylua2.toml refactor(tests): lint decorations_spec, float_spec, multigrid_spec #33274 2025-05-06 18:00:20 -07:00
.styluaignore refactor(tests): lint decorations_spec, float_spec, multigrid_spec #33274 2025-05-06 18:00:20 -07:00
BSDmakefile feat(lua)!: register_keystroke_callback => on_key 2021-09-09 06:09:33 -07:00
BUILD.md docs: misc 2025-11-23 20:03:13 -05:00
build.zig build(windows): vendor xxd.c #36746 2025-11-29 23:15:47 -05:00
build.zig.zon build(deps): bump tree-sitter-query to v0.8.0 2025-11-27 19:26:20 +01:00
CMakeLists.txt build(windows): vendor xxd.c #36746 2025-11-29 23:15:47 -05:00
CMakePresets.json docs: misc 2025-01-11 10:34:12 +01:00
CONTRIBUTING.md docs: misc 2025-11-23 20:03:13 -05:00
INSTALL.md docs: small fixes (#35791) 2025-09-16 11:41:36 +08:00
LICENSE.txt vim-patch:69c3493: runtime(doc): clarify license conditions for distributed runtime files 2025-05-26 17:51:24 +02:00
MAINTAIN.md docs: misc 2025-06-14 17:24:36 +02:00
Makefile build: drop BUNDLED_CMAKE_FLAG, BUNDLED_LUA_CMAKE_FLAG 2025-11-22 15:26:03 -05:00
README.md docs(README): fix logo (#36778) 2025-12-01 15:18:22 +00: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 for details.

Vim is Charityware.  You can use and copy it as much as you like, but you are
encouraged to make a donation for needy children in Uganda.  Please see the
kcc section of the vim docs or visit the ICCF web site, available at these URLs:

        https://iccf-holland.org/
        https://www.vim.org/iccf/
        https://www.iccf.nl/

You can also sponsor the development of Vim.  Vim sponsors can vote for
features.  The money goes to Uganda anyway.