astro-nvim-v3 - archive v3
This commit is contained in:
48
README.md
Normal file
48
README.md
Normal file
@@ -0,0 +1,48 @@
|
||||
# nvim-config
|
||||
|
||||
My personal neovim config
|
||||
|
||||
## Installation
|
||||
|
||||
- Windows
|
||||
|
||||
```powershell
|
||||
Rename-Item -Path $env:LOCALAPPDATA\nvim -NewName $env:LOCALAPPDATA\nvim.bak
|
||||
Rename-Item -Path $env:LOCALAPPDATA\nvim-data -NewName $env:LOCALAPPDATA\nvim-data.bak
|
||||
git clone https://github.com/Penguin-jpg/nvim-config $env:LOCALAPPDATA\nvim
|
||||
nvim
|
||||
```
|
||||
|
||||
- Unix
|
||||
|
||||
```shell
|
||||
mv ~/.config/nvim ~/.config/nvim.bak
|
||||
mv ~/.local/share/nvim ~/.local/share/nvim.bak
|
||||
git clone https://github.com/Penguin-jpg/nvim-config ~/.config/nvim
|
||||
nvim
|
||||
```
|
||||
|
||||
## Dependency
|
||||
|
||||
- Python
|
||||
|
||||
```shell
|
||||
sudo apt-get install python3-dev python3-pip python3-venv
|
||||
pip install pynvim
|
||||
```
|
||||
|
||||
- Node
|
||||
|
||||
```shell
|
||||
npm install -g neovim
|
||||
```
|
||||
|
||||
- Cargo
|
||||
```shell
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
rustup update
|
||||
cargo install --locked yazi-fm yazi-cli
|
||||
```
|
||||
- Optional
|
||||
- [ripgrep (for live grep)](https://github.com/BurntSushi/ripgrep)
|
||||
- [wezterm](https://wezfurlong.org/wezterm/index.html)
|
||||
Reference in New Issue
Block a user