modification du script d'intallation + modif readme

This commit is contained in:
bastien 2024-05-19 12:13:13 +02:00
parent aeb88394ca
commit 3083d89c08
3 changed files with 17 additions and 19 deletions

View file

@ -50,9 +50,7 @@ VimsCode est un IDE avec vim pour les débutant ou les expert :
Prérequis :
```
sudo apt update
sudo apt install git elinks figlet
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
git clone https://git.cohabit.fr/bastien/VimsCode.git
```
### Installation de VimsCode :
@ -60,22 +58,10 @@ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Après le clone, lancer juste le script d'installation
```
https://git.cohabit.fr/bastien/VimsCode.git
cd VimsCode
chmod +x install.sh
./install.sh
```
### Alias :
Quand vous chargez vim pour la première fois apres l'installation, ce dernier vous mettra plusieurs erreurs car vous n'avez pas encore installer les greffons nécessaire à son bon fonctionnement.
Editer votre bashrc ou zshrc pour ajouter l'alias VimsCode :
```
vim ~/.zshrc or vim ~/.bashrc
alias vimscode="~/.vim/vimscode.sh"
```
### Installations des Greffons :
Lancer `vim` et taper la commande `:PluginInstall`
@ -122,7 +108,5 @@ Et pour voir d'autres thèmes : [Theme](https://github.com/flazz/vim-colorscheme
Pour mettre à jour VimsCode, taper simple ces commandes :
```
cd ~/.vim
chmod +x update-vimscode
./update-vimscode
```

18
install.sh Normal file → Executable file
View file

@ -1,6 +1,20 @@
#!/bin/bash
sudo apt update
sudo apt install elinks git figlet
mv * ~/.vim && rm -rf Vimscode
cd ~/.vim && mv vimrc-conf ~/.vimrc
cd ~/.vim/bundle/ && git clone https://github.com/VundleVim/Vundle.vim.git
echo "installation terminé, lancer vim puis ":PluginInstall""
cd ~/.vim/bundle/ && git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
chmod +x update-vimscode
echo "Utilisez-vous bash ou zsh ?"
read term
if [ "$term" = "bash" ]; then
cat 'alias vimscode=\"~/.vim/vimscode.sh\"' >> ~/.bashrc
else
cat 'alias vimscode=\"~/.vim/vimscode.sh\"' >> ~/.zshrc
fi
echo "Installation terminé, lancer vim puis taper sur ":" et écrivé "PluginInstall"

0
update-vimscode Normal file → Executable file
View file