Skip to content

Commit

Permalink
Create install.md
Browse files Browse the repository at this point in the history
create install guide
  • Loading branch information
nicklm0 authored Feb 20, 2025
1 parent 0ac6309 commit b6ba829
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions nvim/install.md
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
```

0 comments on commit b6ba829

Please sign in to comment.