-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create install guide
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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,33 @@ | ||
# installing [neovim](https//:gitHub.com/neovim/neovim) from source | ||
|
||
step by step install | ||
|
||
1.install this packages | ||
|
||
``` | ||
sudo apt install ninja-build gettext cmake unzip curl | ||
``` | ||
|
||
2. clone the neovim repository | ||
|
||
``` | ||
git clone [email protected]:neovim/neovim.git | ||
``` | ||
|
||
3. cd to neovim and go to the latest branch | ||
|
||
``` | ||
$ cd neovim git checkout stable | ||
``` | ||
|
||
4. activate cmake and make the magic work | ||
|
||
``` | ||
$ make CMAKE_BUILD_TYPE=RelWithDebInfo | ||
``` | ||
|
||
5. activate the make install on the neovim directory | ||
|
||
``` | ||
$ sudo make install | ||
``` |