Compare commits

...

5 Commits

Author SHA1 Message Date
966eb0b4fe Actualiser install.sh
fix path setup nvim
2026-05-27 13:42:51 +00:00
fed74a8438 Actualiser install.sh
Forgot the output path of curl
2026-05-27 13:41:55 +00:00
d1cab46f53 Actualiser install.sh
Fix it?
2026-05-27 13:40:31 +00:00
e3a76f447c add installation script 2026-05-02 14:00:49 +02:00
9615f07e31 update README with installation instruction 2026-05-01 18:25:23 +02:00
2 changed files with 14 additions and 0 deletions

View File

@@ -4,6 +4,12 @@
- So you just import its modules , like `require "nvchad.options" , require "nvchad.mappings"` - So you just import its modules , like `require "nvchad.options" , require "nvchad.mappings"`
- So you can delete the .git from this repo ( when you clone it locally ) or fork it :) - So you can delete the .git from this repo ( when you clone it locally ) or fork it :)
# Install
```bash
curl -sf https://gitea.astrid-klipfel.fr/asteri/neovim/raw/branch/main/install.sh | sh
```
# Credits # Credits
1) Lazyvim starter https://github.com/LazyVim/starter as nvchad's starter was inspired by Lazyvim's . It made a lot of things easier! 1) Lazyvim starter https://github.com/LazyVim/starter as nvchad's starter was inspired by Lazyvim's . It made a lot of things easier!

8
install.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
sudo apt install git nodejs npm libfuse2
rm -rf ~/.config/nvim
git clone https://gitea.astrid-klipfel.fr/asteri/neovim.git ~/.config/nvim
mkdir -p ~/Applications
curl -sf https://github.com/neovim/neovim/releases/download/v0.12.2/nvim-linux-x86_64.appimage -o ~/Applications/nvim-linux-x86_64.appimage
chmod +x ~/Applications/nvim-linux-x86_64.appimage
~/Applications/nvim-linux-x86_64.appimage