This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): Updated minimum neovim version to 0.7.0 + added updating n…
…eovim docs.
- Loading branch information
connorgmeean
committed
Aug 12, 2022
1 parent
6944c8f
commit ec17813
Showing
2 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Updating Neovim | ||
|
||
Doom-nvim currently requires neovim `^v0.7.x`, check your neovim version by running `nvim -v` in the command line. | ||
|
||
## MacOS / Brew | ||
|
||
1. Ensure you have [https://brew.sh/](https://brew.sh/) installed. | ||
2. Run `brew install neovim` to install the latest version. | ||
|
||
## Ubuntu / apt-get | ||
|
||
Ubuntu doesn't always have the latest neovim in its own internal PPA. You will have to add the neovim ppa to get the latest versions. | ||
|
||
1. Ensue you have software-properties-common (allows you to add extra ppa sources): `sudo apt install software-properties-common -y`. | ||
2. Import the stable nim ppa. `sudo add-apt-repository ppa:neovim-ppa/stable -y`. | ||
3. Run update to sync changes `sudo apt-get update`. | ||
4. Install the latest stable neovim: `sudo apt install neovim -y` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters