Skip to content
Vim-fork focused on extensibility and usability
Vim script C Lua Python CMake Shell Other
Branch: master
Clone or download

Latest commit

tjdevries doc: Vim internal variables & options in lua (#12302)
* doc: Add info about vim dicts in lua

* doc: preamble and info

* doc: remove weird spacing

* fixup
Latest commit a6be7a9 May 17, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.builds ci: SourceHut: revisit OpenBSD/FreeBSD config Dec 1, 2019
.github doc [ci skip] #10177 Jun 29, 2019
ci ci/travis: Enable ipv6 #12182 Apr 26, 2020
cmake treesitter: remove utf8proc dependency Apr 18, 2020
config env: try find library dir (like /usr[/local]/lib/nvim) and add it to … Feb 7, 2020
contrib cmake: use LibFindMacros for utf8proc (#11114) Sep 29, 2019
man doc/manpage: Remove the extra nvim subdirectory Feb 10, 2020
runtime doc: Vim internal variables & options in lua (#12302) May 18, 2020
scripts Merge pull request #11764 from blueyed/vim-patch-usage May 15, 2020
snap snap: set "classic" confinement #11601 Dec 24, 2019
src matchdelete: fix porting (#12328) May 17, 2020
test lsp: Handle end lines in apply_text_edits (#12314) May 17, 2020
third-party treesitter: remove utf8proc dependency Apr 18, 2020
unicode vim-patch:8.1.1470: new doublewidth Unicode character U32FF #10126 Jun 6, 2019
.clang-format lint: src/.clang-format Nov 28, 2018
.editorconfig editorconfig: set default tab width to 8 (#9467) Jan 7, 2019
.flake8 ci: pylint target via flake8 Jul 29, 2019
.gitattributes vim-patch:8.1.2182: test42 seen as binary by git diff #11256 Oct 19, 2019
.gitignore vim-patch:8.1.2402: typos and other small things Dec 7, 2019
.luacheckrc Lua: vim.env, vim.{g,v,w,bo,wo} #11442 Nov 24, 2019
.luacov Lua: vim.validate() Nov 11, 2019
.travis.yml Install gettext for msgfmt/msgmerge Mar 19, 2020
BACKERS.md Update backer URL Nov 12, 2015
BSDmakefile build: show a hint for BSD make (#7275) Sep 16, 2017
CMakeLists.txt treesitter: remove utf8proc dependency Apr 18, 2020
CONTRIBUTING.md CONTRIBUTING.md: mention "good first issue" label Jan 29, 2020
LICENSE LICENSE: add LuaJIT notice. #899 Jun 30, 2014
MAINTAIN.md doc Sep 9, 2019
Makefile build: Inherit -n and -jN flags if Ninja #12219 May 1, 2020
README.md doc [ci skip] Dec 31, 2019
appveyor.yml ci: install perl provider Jan 21, 2020
codecov.yml tree-sitter: vendor tree-sitter runtime Sep 28, 2019

README.md

Neovim

Documentation | Chat | Twitter

Travis build status AppVeyor build status Codecov coverage Coverity Scan analysis Clang analysis PVS-Studio analysis

Packages Debian CI Downloads nvim

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!

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, Gentoo, and more!

Install from source

The build is CMake-based, but a Makefile is provided as a convenience.

make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

To install to a non-default location:

make CMAKE_INSTALL_PREFIX=/full/path/
make install

To skip bundled (third-party/*) dependencies:

  1. Install the dependencies using a package manager.
    sudo apt install gperf luajit luarocks libuv1-dev libluajit-5.1-dev libunibilium-dev libmsgpack-dev libtermkey-dev libvterm-dev libutf8proc-dev
    sudo luarocks build mpack
    sudo luarocks build lpeg
    sudo luarocks build inspect
    
  2. Build with USE_BUNDLED=OFF:
    make CMAKE_BUILD_TYPE=RelWithDebInfo USE_BUNDLED=OFF
    sudo make install
    

To inspect the build, these CMake features are useful:

  • 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.

See the Building Neovim wiki page for details.

Transitioning from Vim

See :help nvim-from-vim for instructions.

Project layout

├─ ci/              build automation
├─ cmake/           build scripts
├─ runtime/         user plugins/docs
├─ src/nvim/        application source code (see src/nvim/README.md)
│  ├─ api/          API subsystem
│  ├─ eval/         VimL 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
├─ third-party/     CMake subproject to build dependencies
└─ 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:

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

You can also sponsor the development of Vim.  Vim sponsors can vote for
features.  The money goes to Uganda anyway.
You can’t perform that action at this time.