Update README.md
This commit is contained in:
parent
7240132c85
commit
09f6491eb5
73
README.md
73
README.md
|
@ -17,48 +17,55 @@ A possible alternative approach is to use a neovim distribution, like
|
||||||
## Neovim preparation and Installation for Linux
|
## Neovim preparation and Installation for Linux
|
||||||
#### Ubuntu
|
#### Ubuntu
|
||||||
from root:
|
from root:
|
||||||
- apt update
|
```
|
||||||
- apt upgrade
|
apt update
|
||||||
- apt install software-properties-common
|
apt upgrade
|
||||||
- add-apt-repository ppa:neovim-ppa/stable
|
apt install software-properties-common
|
||||||
- apt update
|
add-apt-repository ppa:neovim-ppa/stable
|
||||||
- apt install ripgrep fd-find
|
apt update
|
||||||
- apt install neovim
|
apt install ripgrep fd-find
|
||||||
- (for python development): apt install python3 python3-venv python3-pip
|
apt install neovim
|
||||||
- (for perl development): cpan install Neovim::Ext
|
(for python development): apt install python3 python3-venv python3-pip
|
||||||
|
(for perl development): cpan install Neovim::Ext
|
||||||
|
```
|
||||||
|
|
||||||
#### Kali
|
#### Kali
|
||||||
from root:
|
from root:
|
||||||
- apt update
|
```
|
||||||
- apt upgrade
|
apt update
|
||||||
- apt install ripgrep fd-find
|
apt upgrade
|
||||||
- cd
|
apt install ripgrep fd-find
|
||||||
- mkdir neovim
|
cd
|
||||||
- cd neovim
|
mkdir neovim
|
||||||
- curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
cd neovim
|
||||||
- chmod +x nvim.appimage
|
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
||||||
- cp nvim.appimage /usr/bin/
|
chmod +x nvim.appimage
|
||||||
- ln -s /usr/bin/nvim.appimage /usr/bin/nvim
|
cp nvim.appimage /usr/bin/
|
||||||
- apt install python3 python3-venv python3-pip (for python development)
|
ln -s /usr/bin/nvim.appimage /usr/bin/nvim
|
||||||
- cpan install Neovim::Ext (for perl development)
|
apt install python3 python3-venv python3-pip (for python development)
|
||||||
|
cpan install Neovim::Ext (for perl development)
|
||||||
|
```
|
||||||
|
|
||||||
#### Almalinux
|
#### Almalinux
|
||||||
from root:
|
from root:
|
||||||
- yum update
|
```
|
||||||
- yum install ripgrep fd-find
|
yum update
|
||||||
- yum install neovim
|
yum install ripgrep fd-find
|
||||||
- yum install python3 python3-venv python3-pip (for python development)
|
yum install neovim
|
||||||
- cpan install Neovim::Ext (for perl development)
|
yum install python3 python3-venv python3-pip (for python development)
|
||||||
|
cpan install Neovim::Ext (for perl development)
|
||||||
|
```
|
||||||
|
|
||||||
### Neovim Kickstart Configuration for any linux distribution (in non privileged user context)
|
### Neovim Kickstart Configuration for any linux distribution (in non privileged user context)
|
||||||
- Exit from nvim if open
|
- Exit from nvim if open
|
||||||
- cd $HOME/.config
|
```
|
||||||
- mv nvim nvim_old
|
cd $HOME/.config
|
||||||
- mkdir nvim
|
mv nvim nvim_old
|
||||||
- cd nvim
|
mkdir nvim
|
||||||
- git clone https://github.com/mgua/kickstart.nvim.git .
|
cd nvim
|
||||||
|
git clone https://github.com/mgua/kickstart.nvim.git .
|
||||||
Start nvim now, and you should see the automatic download and updates by lazy
|
```
|
||||||
|
- launch nvim, and you should see the automatic download and updates by lazy
|
||||||
|
|
||||||
## Neovim preparation and Installation for MacOSX
|
## Neovim preparation and Installation for MacOSX
|
||||||
(To be completed)
|
(To be completed)
|
||||||
|
|
Loading…
Reference in New Issue