mirror of
https://github.com/neovim/neovim.git
synced 2025-11-09 20:15:24 +00:00
doc: README.md
This commit is contained in:
47
README.md
47
README.md
@@ -1,5 +1,4 @@
|
|||||||
[](https://neovim.io)
|
[](https://neovim.io)
|
||||||
|
|
||||||
[Wiki](https://github.com/neovim/neovim/wiki) |
|
[Wiki](https://github.com/neovim/neovim/wiki) |
|
||||||
[Documentation](https://neovim.io/doc) |
|
[Documentation](https://neovim.io/doc) |
|
||||||
[Twitter](https://twitter.com/Neovim) |
|
[Twitter](https://twitter.com/Neovim) |
|
||||||
@@ -18,14 +17,30 @@ Neovim is a project that seeks to aggressively refactor Vim in order to:
|
|||||||
|
|
||||||
- Simplify maintenance and encourage [contributions](CONTRIBUTING.md)
|
- Simplify maintenance and encourage [contributions](CONTRIBUTING.md)
|
||||||
- Split the work between multiple developers
|
- Split the work between multiple developers
|
||||||
- Enable advanced [external UIs] without modifications to the core
|
- Enable [advanced UIs] without modifications to the core
|
||||||
- Improve extensibility with a new [plugin architecture](https://github.com/neovim/neovim/wiki/Plugin-UI-architecture)
|
- Maximize [extensibility](https://github.com/neovim/neovim/wiki/Plugin-UI-architecture)
|
||||||
|
|
||||||
For more details, see
|
See [the wiki](https://github.com/neovim/neovim/wiki/Introduction) for more
|
||||||
[the wiki](https://github.com/neovim/neovim/wiki/Introduction)!
|
information.
|
||||||
|
|
||||||
|
See the [Roadmap] for future plans.
|
||||||
|
|
||||||
[](https://waffle.io/neovim/neovim/metrics)
|
[](https://waffle.io/neovim/neovim/metrics)
|
||||||
|
|
||||||
|
Install from source
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
make CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
sudo make install
|
||||||
|
|
||||||
|
See [the wiki](https://github.com/neovim/neovim/wiki/Building-Neovim) for details.
|
||||||
|
|
||||||
|
Install from package
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Packages are in [Homebrew], [Debian], [Ubuntu], [Fedora], [Arch Linux], and
|
||||||
|
[more](https://github.com/neovim/neovim/wiki/Installing-Neovim).
|
||||||
|
|
||||||
What's been done so far
|
What's been done so far
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
@@ -34,24 +49,13 @@ What's been done so far
|
|||||||
- Asynchronous [job control](https://github.com/neovim/neovim/pull/2247)
|
- Asynchronous [job control](https://github.com/neovim/neovim/pull/2247)
|
||||||
- [Shared data (shada)](https://github.com/neovim/neovim/pull/2506) among multiple editor instances
|
- [Shared data (shada)](https://github.com/neovim/neovim/pull/2506) among multiple editor instances
|
||||||
- [XDG base directories](https://github.com/neovim/neovim/pull/3470) support
|
- [XDG base directories](https://github.com/neovim/neovim/pull/3470) support
|
||||||
- [libuv](https://github.com/libuv/libuv/)-based platform/OS/"mch" layer
|
- [libuv](https://github.com/libuv/libuv/)-based platform/OS layer
|
||||||
- [Pushdown automaton](https://github.com/neovim/neovim/pull/3413) input model
|
- [Pushdown automaton](https://github.com/neovim/neovim/pull/3413) input model
|
||||||
- 1000s of new tests
|
- 1000s of new tests
|
||||||
- Legacy tests converted to Lua tests
|
- Legacy tests converted to Lua tests
|
||||||
|
|
||||||
See [`:help nvim-features`][nvim-features] for a comprehensive list.
|
See [`:help nvim-features`][nvim-features] for a comprehensive list.
|
||||||
|
|
||||||
What's being worked on now
|
|
||||||
--------------------------
|
|
||||||
|
|
||||||
See the [Roadmap].
|
|
||||||
|
|
||||||
How do I get it?
|
|
||||||
----------------
|
|
||||||
|
|
||||||
There is a Debian package, homebrew formula, PKGBUILD for Arch Linux, RPM, and
|
|
||||||
more. See [the wiki](https://github.com/neovim/neovim/wiki/Installing-Neovim)!
|
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
@@ -81,6 +85,11 @@ See `LICENSE` for details.
|
|||||||
[license-commit]: https://github.com/neovim/neovim/commit/b17d9691a24099c9210289f16afb1a498a89d803
|
[license-commit]: https://github.com/neovim/neovim/commit/b17d9691a24099c9210289f16afb1a498a89d803
|
||||||
[nvim-features]: https://neovim.io/doc/user/vim_diff.html#nvim-features
|
[nvim-features]: https://neovim.io/doc/user/vim_diff.html#nvim-features
|
||||||
[Roadmap]: https://neovim.io/roadmap/
|
[Roadmap]: https://neovim.io/roadmap/
|
||||||
[external UIs]: https://github.com/neovim/neovim/wiki/Related-projects#gui-projects
|
[advanced UIs]: https://github.com/neovim/neovim/wiki/Related-projects#gui-projects
|
||||||
|
[Homebrew]: https://github.com/neovim/homebrew-neovim#installation
|
||||||
|
[Debian]: https://packages.debian.org/testing/neovim
|
||||||
|
[Ubuntu]: http://packages.ubuntu.com/search?keywords=neovim
|
||||||
|
[Fedora]: https://admin.fedoraproject.org/pkgdb/package/rpms/neovim
|
||||||
|
[Arch Linux]: https://www.archlinux.org/packages/?q=neovim
|
||||||
|
|
||||||
<!-- vim: set tw=80: -->
|
<!-- vim: set tw=80: -->
|
||||||
|
|||||||
Reference in New Issue
Block a user